2024-07-23 16:53:38 +03:00
|
|
|
{% extends "main_layout.html.twig" %}
|
2024-07-11 16:16:36 +03:00
|
|
|
|
|
|
|
{% block content %}
|
2024-07-09 16:08:50 +03:00
|
|
|
<form action="/admin/user/edit" method="post">
|
|
|
|
Логин:<br>
|
|
|
|
<label>
|
|
|
|
<input type = "text" name = "username" required size="50" autofocus placeholder="Логин">
|
|
|
|
</label> <br> <br>
|
|
|
|
|
|
|
|
Пароль:<br>
|
|
|
|
<label>
|
2024-07-24 16:29:00 +03:00
|
|
|
<input type = "text" name = "password" placeholder="Пароль">
|
2024-07-09 16:08:50 +03:00
|
|
|
</label> <br> <br>
|
|
|
|
|
|
|
|
Email адрес: <br>
|
|
|
|
<label>
|
2024-07-24 16:29:00 +03:00
|
|
|
<input type="Email" name="email" required placeholder="Email">
|
2024-07-09 16:08:50 +03:00
|
|
|
</label> <br><br>
|
|
|
|
|
|
|
|
<input type = "submit" value="Подтвердить">
|
|
|
|
<input type="reset">
|
2024-07-11 16:16:36 +03:00
|
|
|
</form>
|
|
|
|
{% endblock %}
|