~chipaca/unity-lens-video/custom-user-agent

« back to all changes in this revision

Viewing changes to templates/registration/password_reset_complete.html

  • Committer: Janos Gyerik
  • Date: 2011-08-07 19:28:15 UTC
  • Revision ID: janos@axiom-20110807192815-74cbfd0u9dw782c7
added primitive account creation and login

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{% extends "base.html" %}
 
2
 
 
3
{% load i18n %}
 
4
 
 
5
{% block pagetitle %}{% trans 'Password reset complete' %}{% endblock %}
 
6
 
 
7
{% block content %}
 
8
 
 
9
<p>{% trans "Your password has been set.  You may go ahead and log in now." %}</p>
 
10
 
 
11
<p><a href="{{ login_url }}">{% trans 'Log in' %}</a></p>
 
12
 
 
13
{% endblock %}