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.
35 lines
831 B
35 lines
831 B
{% extends "seminar/zadani/base.html" %}
|
|
{% load staticfiles %}
|
|
|
|
|
|
{% block content %}
|
|
<h1>
|
|
{% block nadpis1a %}{% block nadpis1b %}
|
|
Přihlášení
|
|
{% endblock %}{% endblock %}
|
|
</h1>
|
|
<form action="{% url 'login' %}" method="post">
|
|
{% csrf_token %}
|
|
<table class="form">
|
|
{{ form.as_table }}
|
|
</table>
|
|
{# Django si posílá jméno další stránky jako obsah formuláře a výchozí hodnota (mi přišlo, že) nejde změnit... #}
|
|
<input type="hidden" name='next' value="{{ next }}">
|
|
<input type="submit" value="Přihlásit">
|
|
</form>
|
|
|
|
<form action="{% url 'reset_password' %}">
|
|
<input type="submit" value="Zapomněl jsem heslo" />
|
|
</form>
|
|
|
|
<hr>
|
|
|
|
<h2>
|
|
Ješte nejste zaregistrováni?
|
|
</h2>
|
|
|
|
<form action="{% url 'seminar_prihlaska' %}">
|
|
<input type="submit" value="Registrovat" />
|
|
</form>
|
|
|
|
{% endblock %}
|
|
|