17 lines
300 B
Twig
17 lines
300 B
Twig
{% block form_tag %} <form class='valid'> {% endblock %}
|
|
|
|
{% block input %}
|
|
|
|
<input id='create_name' type='text' placeholder='Name'><br>
|
|
<span class='error-msg create_name'></span><br>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
{% block submit %}
|
|
|
|
<button id='create_submit'>Créer</button>
|
|
|
|
{% endblock %}
|
|
|
|
</form> |