summaryrefslogtreecommitdiffstats
path: root/accounts/templates/index.html
blob: 075e7c9ba28936d04b84b05453f696756c303c35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{%- extends 'base.html' %}
{%- from '_macros.html' import render_field, render_submit %}
{%- block content %}
<h2>Login</h2>
<p>
  Willkommen bei <strong>spline accounts</strong>.
  Melde dich an,
  <a href="{{ url_for('.about') }}">informier dich</a>, oder
  <a href="{{ url_for('.register') }}">leg einen Account an</a>.
</p>

<form action="{{ url_for('.index') }}" method="post" class="form-horizontal">
  {% for field in form %}
    {{ render_field(field) }}
  {% endfor %}
  {{ render_submit(value='Login') }}
  <p class="form-actions"><a href="{{ url_for('.register') }}">Account erstellen</a></div>
  <p class="form-actions"><a href="{{ url_for('.lost_password') }}">Passwort oder Benutzername vergessen</a></div>
</form>

{%- endblock %}