Skip to content
Permalink
48e450480a
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
34 lines (30 sloc) 906 Bytes
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Quiz Page</title>
<meta name="description" content="form for the Quiz">
<meta name="author" content="Daniel Dias">
<link href="{{host}}/style.css" type="text/css" rel="stylesheet" />
</head>
<body>
<header>
<h1>Questions</h1>
<a href="/logout">Log out</a>
</header>
{{#if msg}}
<p class="msg">{{msg}}</p>
{{/if}}
<main>
</br>
<h2>{{questiont.question}}</h2>
<form action="/quiz" enctype="multipart/form-data" method="post">
<label for="question"></label><br />
<input type="text" name="question" placeholder="" value="" required>
</form>
<p><a href="/secure/quiz/">Back</a></p>
<p><a href="/">Home page</a></p>
<p><a href="/secure/backoffice">Add new questions ans answers</a></p>
</main>
</body>
</html>