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
42 lines (37 sloc) 992 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>
<h2>How to answer the quiz questions?</h2>
<p>Just read the question and answer when ready &#x2714;</p>
<article>
<table>
{{#each questiont}}
<tr>
<td>{{this.question}}</a></td>
<td><p><a href="/secure/quizf/{{this.id}}">Click me</a></p></td>
</tr>
{{/each}}
</table>
<p>The quiz is not time constrained &#9201;</p>
<p>User score: 0 </p>
<p><a href="/secure">Home page</a></p>
<p><a href="/secure/backoffice">Add new questions ans answers</a></p>
</article>
</main>
</body>
</html>