24 lines
961 B
HTML
24 lines
961 B
HTML
{% extends 'registration/registration_base.html' %}
|
|
{% load i18n %}
|
|
{% block title %}{% trans 'New Password | Learning management system %}{% endblock title %}
|
|
{% load crispy_forms_tags %}
|
|
{% block content %}
|
|
|
|
{% include 'snippets/messages.html' %}
|
|
|
|
<div id="login">
|
|
<h3 class="login-title">{% trans 'Confirm New Password' %}</h3>
|
|
<div class="p-3">
|
|
<form action="" method="POST" class="form-box text-left">{% csrf_token %}
|
|
{{ form|crispy }}
|
|
<!-- <label for="password1">New Password</label>
|
|
<input type="password" id="password1" name="password1" class="form-control" required><hr>
|
|
<label for="password2">Confirm Password</label>
|
|
<input type="password" id="password2" name="password2" class="form-control" required>
|
|
<hr> -->
|
|
<input type="submit" class="btn btn-primary" value="{% trans 'Reset Password' %}">
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{% endblock content %}
|