подгружаемое меню user для меню и все варианты его обработки

This commit is contained in:
2022-11-05 19:17:26 +03:00
parent bf5de5b25e
commit 86c720d946
8 changed files with 802 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
{% load static %}
<script type="text/javascript">
if ( document.getElementById("box") == null ) window.location.replace("/"); // проверяем, а не вызвали-ли этот popup отдельно
$(document).ready(function(){ timerId = setTimeout("clearTimeout(timerId);$('#box').load('/center_popup_main');", 12000 ); });
</script>
<h1>Спасибо, вы подтвердили регистрацию:</h1>
<ul>
<li>пользователь: <strong>{{ USER }}</strong></li>
<li>e-mail: <strong>{{ EMAIL }}</strong></li>
</ul>
<a type="button" class="btn btn-default" style="margin:1ex" onclick="$('#box').load('/center_popup_main');"> Ок <span class="glyphicon glyphicon-ok-sign"></span> </a>