SOITA/templates/testPassword.html
2022-04-12 23:22:22 +02:00

15 lines
505 B
HTML

{% extends "base.html" %}
{% load filters %}
{% load rest_framework %}
{% block title %}Nowy test{% endblock %}
{% block content %}
<form method="post" novalidate>
<label for="password"><h2>Ten test jest chroniony hasłem. Podaj poprawne hasło by móc go rozwiązać:</h2></label>
<input id="password" type="text" name="password" value="">
<div class="testContent">
<input type="submit" value="Zatwierdź">
</div>
</form>
{% endblock %}