Make a squash
This commit is contained in:
commit
113992f95b
21 changed files with 3339 additions and 0 deletions
16
web/templates/auth/login.html
Normal file
16
web/templates/auth/login.html
Normal file
|
@ -0,0 +1,16 @@
|
|||
{% extends 'base.html' %}
|
||||
|
||||
{% block content %}
|
||||
<!-- {{ get_flashed_messages() }}-->
|
||||
<form method="POST">
|
||||
<p>
|
||||
<label for="username">Uporabnik</label> {{ form.username() }}
|
||||
<p>
|
||||
<label for="password">Geslo</label> {{ form.password() }}
|
||||
<p style="color: red;">{{ form.errors['username'] | join(' ') }}
|
||||
|
||||
<p>
|
||||
{{ form.submit() }}
|
||||
{{ form.hidden_tag() }}
|
||||
</form>
|
||||
{% endblock %}
|
Loading…
Add table
Add a link
Reference in a new issue