2024-08-24 01:43:07 +03:00
|
|
|
{% ELDEF main JSON pres JSON userinfo %}
|
2024-08-25 13:06:26 +03:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="{% WRITE pres.lang %}">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>{% WRITE pres.phr.decl.page-login %}</title>
|
|
|
|
<link rel="stylesheet" href="/assets/css/login.css">
|
2024-08-23 18:29:21 +03:00
|
|
|
|
2024-08-25 13:06:26 +03:00
|
|
|
</head>
|
2024-08-23 18:29:21 +03:00
|
|
|
|
2024-08-25 13:06:26 +03:00
|
|
|
<body>
|
|
|
|
{% PUT pass-pres-userinfo pres userinfo %}
|
|
|
|
<div class="form-container">
|
|
|
|
<h1 class="hide-cursor no-select">{% WRITE pres.phr.decl.enter %}</h1>
|
|
|
|
<form action="/login" method="post" enctype="application/x-www-form-urlencoded">
|
|
|
|
<label for="nickname">{% WRITE pres.phr.decl.nickname %}</label>
|
|
|
|
<input type="text" name="nickname" id="nickname"><br>
|
|
|
|
<label for="password">{% WRITE pres.phr.decl.password %}</label>
|
|
|
|
<input type="password" name="password" id="password"><br>
|
|
|
|
<button type="submit" class="hide-cursor no-select">{% WRITE pres.phr.act.enter %}</button>
|
|
|
|
</form>
|
|
|
|
</div>
|
2024-08-23 18:29:21 +03:00
|
|
|
|
2024-08-25 13:06:26 +03:00
|
|
|
</body>
|
|
|
|
</html>
|
2024-08-23 18:29:21 +03:00
|
|
|
{% ENDELDEF %}
|