We have phased out the LDAP login form. Log in by using the CS Single Sign-On button in the Sign in with section below the Login form. :bug:

Skip to content
Snippets Groups Projects

Change Password

Merged Juliet Morris requested to merge chngPsswrd into main
9 files
+ 136
0
Compare changes
  • Side-by-side
  • Inline
Files
9
<!--https://ordinarycoders.com/blog/article/django-password-reset-->
{% extends 'base.html' %}
{% block content %}
{% load crispy_forms_tags %}
<!--https://ordinarycoders.com/blog/article/render-forms-with-django-crispy-forms-->
<!--Reset Password-->
<div class="container p-5">
<h2 class="font-weight-bold mt-3">Reset Password</h2>
<hr>
<p>Forgotten your password? Enter your email address below, and we'll email instructions for setting a new one.</p>
<form method="POST">
{% csrf_token %}
{{ password_reset_form|crispy }}
<button class="btn btn-primary" type="submit">Send email</button>
</form>
</div>
{% endblock %}
\ No newline at end of file
Loading