2 Fehler behoben:

1.  Internet Explorer unterstützung für <main> Tag ist fehlerhaft, wurde per CSS Definituon behoben.
2.  Templates für registrierung versehntlich gelöscht, wurden im membership Modul wieder hergestellt.
This commit is contained in:
Christian Berg
2015-08-23 21:04:20 +02:00
parent a7bfd2157d
commit 9f350b9a1d
25 changed files with 281 additions and 79 deletions

View File

@@ -0,0 +1,17 @@
{% extends "base.html" %}
{% load i18n %}
{% block title %}{% trans 'Password reset complete' %}{% endblock %}
{% block teaser %}<h1>{% trans 'Password reset complete' %}</h1>{% endblock %}
{% block content %}
<h2>{% trans 'Password reset complete' %}</h2>
<p>{% trans "Your password has been set. You may go ahead and log in now." %}</p>
<p class="more_link">
<a href="{{ login_url }}" class="button"><span class="fa fa-sign-in"></span> {% trans 'Login' %}</a>
</p>
{% endblock %}