mirror of
https://github.com/chibicitiberiu/ytsm.git
synced 2024-02-24 05:43:31 +00:00
28 lines
575 B
HTML
28 lines
575 B
HTML
{% extends 'YtManagerApp/master_default.html' %}
|
|
|
|
{% load static %}
|
|
{% load crispy_forms_tags %}
|
|
|
|
{% block scripts %}
|
|
<script>
|
|
|
|
window.setTimeout(function(){
|
|
window.location.href = "/";
|
|
}, 10000);
|
|
|
|
</script>
|
|
|
|
{% endblock %}
|
|
|
|
{% block body %}
|
|
|
|
<div class="alert-card mx-auto">
|
|
|
|
<div class="alert alert-info" role="alert">
|
|
<p>We've emailed you instructions for resetting your password.</p>
|
|
<p>If they haven't arrived in a few minutes, check your spam folder.</p>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %} |