Test password view

This commit is contained in:
Piotr Kopycki 2022-04-12 23:22:22 +02:00
parent c1d087c192
commit dead795e03

View File

@ -1,7 +1,14 @@
<form method="post" novalidate>
<label for="password"><h2>Hasło:</h2></label>
{% 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>
</form>
{% endblock %}