Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
converse.js
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
converse.js
Commits
93479653
Commit
93479653
authored
Mar 06, 2012
by
Michal Čihař
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Two missing forms
parent
7628024c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
33 additions
and
0 deletions
+33
-0
html/registration/password_reset_complete.html
html/registration/password_reset_complete.html
+10
-0
html/registration/password_reset_confirm.html
html/registration/password_reset_confirm.html
+23
-0
No files found.
html/registration/password_reset_complete.html
0 → 100644
View file @
93479653
{% extends "base.html" %}
{% load i18n %}
{% block content %}
<p>
{% trans "Your password has been set. You may go ahead and log in now." %}
</p>
<p><a
href=
"{{ login_url }}"
>
{% trans 'Log in' %}
</a></p>
{% endblock %}
html/registration/password_reset_confirm.html
0 → 100644
View file @
93479653
{% extends "base.html" %}
{% load i18n %}
{% block content %}
{% if validlink %}
<p>
{% trans "Please enter your new password twice so we can verify you typed it in correctly." %}
</p>
<form
action=
""
method=
"post"
>
{% csrf_token %}
<table>
{{ form.as_table }}
</table>
<input
type=
"submit"
value=
"{% trans 'Change my password' %}"
class=
"button"
/>
</form>
{% else %}
<p>
{% trans "The password reset link was invalid, possibly because it has already been used. Please request a new password reset." %}
</p>
{% endif %}
{% endblock %}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment