MicroFrameWork/views/user_create.html.twig
2024-07-24 14:07:45 +03:00

23 lines
632 B
Twig

{% extends "main_layout.html.twig" %}
{% block content %}
<form action="/admin/user/" method="post">
Логин:<br>
<label>
<input type = "text" name = "username" required size="50" autofocus placeholder="Логин">
</label> <br> <br>
Пароль:<br>
<label>
<input type = "text" name = "password" placeholder="Пароль">
</label> <br> <br>
Email адрес: <br>
<label>
<input type="Email" name="email" required placeholder="Email">
</label> <br><br>
<input type = "submit" value="Подтвердить">
<input type="reset">
</form>
{% endblock %}