mirror of
https://github.com/chibicitiberiu/ytsm.git
synced 2024-02-24 05:43:31 +00:00
Added docker support
This commit is contained in:
27
app/YtManagerApp/templates/registration/logged_out.html
Normal file
27
app/YtManagerApp/templates/registration/logged_out.html
Normal file
@ -0,0 +1,27 @@
|
||||
{% extends 'YtManagerApp/master_default.html' %}
|
||||
|
||||
{% load static %}
|
||||
{% load crispy_forms_tags %}
|
||||
|
||||
{% block scripts %}
|
||||
<script>
|
||||
|
||||
window.setTimeout(function(){
|
||||
window.location.href = "/";
|
||||
}, 3000);
|
||||
|
||||
</script>
|
||||
|
||||
{% endblock %}
|
||||
|
||||
{% block body %}
|
||||
|
||||
<div class="alert-card mx-auto">
|
||||
|
||||
<div class="alert alert-info" role="alert">
|
||||
You have been logged out!
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
{% endblock %}
|
Reference in New Issue
Block a user