2025-04-17 00:12:02 +03:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="ru">
|
|
|
|
{% include 'utils/_head.html' %}
|
|
|
|
<body>
|
|
|
|
{% include 'utils/_header.html' %}
|
|
|
|
<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">{{ user[0] }}</span></p>
|
|
|
|
<p class="simpletext" style="text-align:left">Почта: <span class="context">{{ user[1] }}</span></p>
|
2025-04-17 16:11:32 +03:00
|
|
|
<p class="simpletext" style="text-align:left">Описание: <br />
|
|
|
|
<span class="mono">{{ user[2] }}</span></p>
|
2025-04-17 00:12:02 +03:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% include 'utils/_websidenav.html' %}
|
|
|
|
|
|
|
|
<div id="success"> <p>Вход произведён успешно!</p> </div>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|