21 lines
675 B
HTML
21 lines
675 B
HTML
{% extends 'base_structure/layout/base_authentication_template.html' %}
|
||
{% load i18n %}
|
||
|
||
{% load static %}
|
||
{% block content %}
|
||
|
||
<div class="card mt-3 mb-3">
|
||
<div class="card-body">
|
||
<p>{% translate 'We’ve emailed you instructions for setting your password, if an account exists with the email you entered. You should receive them shortly.' %}</p>
|
||
|
||
<p>{% translate 'If you don’t receive an email, please make sure you’ve entered the address you registered with, and check your spam folder.' %}</p>
|
||
|
||
</div>
|
||
</div>
|
||
|
||
{% endblock content%}
|
||
|
||
{% block javascript %}
|
||
<!-- include required js cdn link through html here -->
|
||
|
||
{% endblock %} |