51 lines
2.3 KiB
HTML
51 lines
2.3 KiB
HTML
![]() |
{% ELDEF main JSON pres JSON userinfo JSON messages %}
|
||
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<link rel="icon" type="image/png" href="/assets/img/favicon.png">
|
||
|
<link rel="stylesheet" href="/assets/css/common.css">
|
||
|
<link rel="stylesheet" href="/assets/css/register.css">
|
||
|
<title>{% W pres.register.header %}</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
{% FOR error IN messages %}
|
||
|
<div class="server-notif-error-msg-box">
|
||
|
{% W error.text %}
|
||
|
</div>
|
||
|
{% ENDFOR %}
|
||
|
|
||
|
<div class="form-container">
|
||
|
<h1 class="wide-centered-header">{% W pres.register.header %}</h1>
|
||
|
<form action="/register" method="post" enctype="application/x-www-form-urlencoded">
|
||
|
<table class="reg-input-table">
|
||
|
<tr>
|
||
|
<td class="reg-input-td1"><label for="input-nickname">{% W pres.register.directive-nickname %}</label></td>
|
||
|
<td class="reg-input-td2">
|
||
|
<input type="text" name="nickname" id="input-nickname"
|
||
|
placeholder="{% W pres.register.placeholder-nickname %}" class="one-line-input" required>
|
||
|
</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td class="reg-input-td1"><label for="input-name">{% W pres.register.directive-name %}</label></td>
|
||
|
<td class="reg-input-td2">
|
||
|
<input type="text" name="name" id="input-name"
|
||
|
placeholder="{% W pres.register.placeholder-name %}" class="one-line-input" required>
|
||
|
</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td class="reg-input-td1"><label for="input-password">{% W pres.register.directive-password %}</label></td>
|
||
|
<td class="reg-input-td2">
|
||
|
<input name="password" id="input-password" type="password"
|
||
|
placeholder="{% W pres.register.placeholder-password %}" class="one-line-input" required>
|
||
|
</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
<button class="action-button centered-block-el" type="submit">{% W pres.register.act %}</button>
|
||
|
</form>
|
||
|
</div>
|
||
|
|
||
|
</body>
|
||
|
</html>
|
||
|
{%ENDELDEF%}
|