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.
27 lines
596 B
27 lines
596 B
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Title</title>
|
|
</head>
|
|
<body>
|
|
<h1>Systém formuláře s přihlášením</h1>
|
|
|
|
{% if user.is_authenticated %}
|
|
<div>ahoj, {{ user.username }} </div>
|
|
<a href="{% url 'formular' %}">Formulář</a>
|
|
<a href="{% url 'seznam' %}">Seznam</a>
|
|
<br>
|
|
<a href="{% url 'logout' %}">Logout</a>
|
|
{% else %}
|
|
<p>Nejsi přihlášený</p>
|
|
<a href="{% url 'seznam'%}">Seznam</a>
|
|
<br>
|
|
<a href="{% url 'login' %}">Login</a>
|
|
<a href="{% url 'reg' %}">Registrace</a>
|
|
<a href="{% url 'password_reset' %}">RESET PW</a>
|
|
{% endif %}
|
|
|
|
|
|
</body>
|
|
</html>
|