1
0
mirror of https://github.com/chibicitiberiu/ytsm.git synced 2024-02-24 05:43:31 +00:00
ytsm/app/YtManagerApp/templates/registration/password_reset_complete.html

26 lines
448 B
HTML
Raw Normal View History

2018-10-13 23:01:45 +03:00
{% extends 'YtManagerApp/master_default.html' %}
{% load static %}
{% load crispy_forms_tags %}
{% block scripts %}
<script>
window.setTimeout(function(){
window.location.href = "/";
}, 5000);
</script>
{% endblock %}
{% block body %}
<div class="alert-card mx-auto">
<div class="alert alert-info" role="alert">
The password has been changed!
</div>
</div>
{% endblock %}