This repository has been archived on 2025-12-11. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
quizzy-application/drill-and-practice/views/main.eta
2023-03-12 20:19:04 +02:00

19 lines
856 B
Plaintext

<% layout("./layouts/layout.eta") %>
<h1>Quizzy Application</h1>
<p>This is a web application that is used for repeated practice of learned content. The application provides a list of topics and allows creating multiple-choice questions into those topics that are then answered by self and others.</p>
<p>The application also shows basic statistics: the total number of available questions and the total number of question answers. In addition, the application also provides an API for retrieving and answering random questions.</p>
<p>Are you already registered? <a href="/auth/login">Login</a></p>
<p>Not registered yet? <a href="/auth/register">Register</a></p>
<h2>Statistics</h2>
<p>Total number of:</p>
<ul>
<li>Topics: <%= it.totalTopics %></li>
<li>Questions: <%= it.totalQuestions %></li>
<li>Answers: <%= it.totalAnswers %></li>
</ul>