MicroFrameWork/views/question_create.html.twig

13 lines
398 B
Twig
Raw Normal View History

2024-07-12 11:31:04 +03:00
{% extends "main_layout.html.twig" %}
2024-07-11 16:16:36 +03:00
{% block content %}
2024-07-10 14:39:37 +03:00
<form action="/admin/question" method="post">
Вопрос: <br>
<label>
<textarea name = "question" rows="10" cols="50" placeholder="Введите здесь ваш вопрос"></textarea>
</label> <br> <br>
<input type = "submit" value="Подтвердить">
<input type="reset">
2024-07-11 16:16:36 +03:00
</form>
{% endblock %}