Web M&M
https://mam.matfyz.cz
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
460 B
22 lines
460 B
{% extends "base.html" %}
|
|
{% block title %}Zadejte nové heslo{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>
|
|
{% block nadpis1a %}{% block nadpis1b %}
|
|
Zadejte nové heslo
|
|
{% endblock %}{% endblock %}
|
|
</h1>
|
|
|
|
<p>Zadejte dvakrát nové heslo. Tak ověříme, že bylo zadáno správně.</p>
|
|
|
|
|
|
<form method="POST">
|
|
{% csrf_token %}
|
|
<table>
|
|
{{ form.as_table }}
|
|
</table>
|
|
<input type="submit" value="Nastavit heslo!">
|
|
</form>
|
|
|
|
{% endblock %}
|
|
|