-
Notifications
You must be signed in to change notification settings - Fork 13
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
Showing
1 changed file
with
16 additions
and
1 deletion.
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 |
---|---|---|
@@ -1,17 +1,32 @@ | ||
{% extends "account/base.html" %} | ||
{% load sass_tags %} | ||
|
||
{% load i18n %} | ||
{% load crispy_forms_tags %} | ||
|
||
{% block head_title %}{% trans "Set Password" %}{% endblock %} | ||
|
||
{% block inner %} | ||
<h1>{% trans "Set Password" %}</h1> | ||
<link type="text/css" href="{% sass_src 'css/readux2/menu-inverse.scss' %}" rel="stylesheet"> | ||
{% include '_home/_nav.html' %} | ||
|
||
<div class="uk-container uk-margin-bottom"> | ||
|
||
<!-- Breadcrumb --> | ||
<ul class="breadcrumb uk-margin-small-top uk-margin-bottom"> | ||
<li><a href="/">Home</a></li> | ||
<li>Set Password</li> | ||
</ul> | ||
<!-- End --> | ||
|
||
<h1 class="page-title uk-margin-top uk-margin-remove-bottom">{% trans "Set Password" %}</h1> | ||
|
||
<form method="POST" action="{% url 'account_set_password' %}" class="password_set"> | ||
{% csrf_token %} | ||
{{ form|crispy }} | ||
<input type="submit" name="action" value="{% trans 'Set Password' %}"/> | ||
</form> | ||
|
||
</div> | ||
{% endblock %} | ||
|