2025-02-02 20:43:16 +03:00
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="ru">
|
|
|
|
|
{% include '_head.html' %}
|
|
|
|
|
<body>
|
|
|
|
|
{% include '_header.html' %}
|
2025-02-03 00:19:41 +03:00
|
|
|
|
<div class="container" style="max-width:70%; justify-content: space-between;min-width: 40rem; flex-wrap: nowrap">
|
|
|
|
|
<div class="profile">
|
|
|
|
|
<h2 class="header" style="text-align:left">Ваш Профиль:</h2>
|
|
|
|
|
<p class="simpletext" style="text-align:left">Логин: <span class="context">admin</span></p>
|
|
|
|
|
<p class="simpletext" style="text-align:left">Почта: <span class="context">supercooladmin@coders-squad.com</span></p>
|
|
|
|
|
<p class="simpletext" style="text-align:left">О себе:</p>
|
|
|
|
|
<p class="mono" style="text-align:left">Я самый надёжный и крутой админ в мире.<span class="hidden">{{ flag }}</span><br/>ВЫДЕЛИ МЕНЯ! </p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="flag-input ">
|
|
|
|
|
<h3 class="header" style="text-align:left">Введите ответ:</h3>
|
|
|
|
|
<form action="success_login" method="post" class="simpletext">
|
|
|
|
|
<input class="inpt" type="text" name="user_flag" style="width: 100%; height: 1.25rem; margin: 0">
|
|
|
|
|
<input type="submit" value="Submit" class="btn1" style="margin-top: 1.25rem">
|
|
|
|
|
</div>
|
2025-02-02 20:43:16 +03:00
|
|
|
|
</div>
|
|
|
|
|
{% include '_sidenav.html' %}
|
|
|
|
|
|
2025-02-03 00:19:41 +03:00
|
|
|
|
{% if error %}
|
|
|
|
|
<div id="error"> <p>{{ error }}</p> </div>
|
|
|
|
|
{% elif success_flag %}
|
|
|
|
|
<div class="task-done">
|
2025-02-04 13:29:17 +03:00
|
|
|
|
<h1 class="header">Вы прошли задание!</h1>
|
|
|
|
|
<img class="done" src="{{ url_for('static', filename='imgs/done_icon.png') }}">
|
|
|
|
|
<a href="{{ url_for('index') }}" class="usable-context" style="text-align: canter"> < НА ГЛАВНУЮ > </a>
|
2025-02-03 00:19:41 +03:00
|
|
|
|
</div>
|
|
|
|
|
{% else %}
|
|
|
|
|
<div id="success"> <p>Вход произведён успешно!</p> </div>
|
|
|
|
|
{% endif %}
|
2025-02-02 20:43:16 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|
|
|
|
|
|