-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
31a78c5
commit e87e2ab
Showing
3 changed files
with
34 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{% extends 'layouts/centered.html' %} | ||
{% load i18n %} | ||
|
||
{% block main %} | ||
<div class="centered-form-wrapper"> | ||
{% include 'blocks/page-heading.html' %} | ||
<p class="paragraph">{% translate "Your account is ready to use. You may go ahead and sign in now." %}</p> | ||
<a class="button" href="{{ login_url }}">{% translate 'Sign in' %}</a> | ||
</div> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{% extends 'layouts/centered.html' %} | ||
{% load i18n %} | ||
{% block main %} | ||
<div class="centered-form-wrapper"> | ||
<div> | ||
{% include 'blocks/page-heading.html' %} | ||
<p class="paragraph">{% translate 'Forgotten your password? Enter your email address below, and we’ll email instructions for setting a new one.' %}</p> | ||
</div> | ||
<form class="form" method="post"> | ||
{% csrf_token %} | ||
{{ form.as_div }} | ||
<button class="button form-submit" type="submit">{% translate 'Set my password' noop %}</button> | ||
</form> | ||
</div> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters