summaryrefslogtreecommitdiffstats
path: root/accounts/templates/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'accounts/templates/index.html')
-rw-r--r--accounts/templates/index.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/accounts/templates/index.html b/accounts/templates/index.html
index 4d398de..075e7c9 100644
--- a/accounts/templates/index.html
+++ b/accounts/templates/index.html
@@ -5,17 +5,17 @@
<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>.
+ <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">
+<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>
+ <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 %}