24 lines
538 B
Twig
24 lines
538 B
Twig
{% block form_tag %} <form class='valid'> {% endblock %}
|
|
|
|
{% block input %}
|
|
|
|
<input id='create_name' type='text' placeholder='Nom'><br>
|
|
<span class='error-msg create_name'></span><br>
|
|
|
|
<select id='create_class'>
|
|
<option value='-' selected disabled>Type de groupe</option>
|
|
<option value='0'>utilisateurs</option>
|
|
<option value='1'>machines</option>
|
|
</select>
|
|
|
|
<span class='error-msg create_class'></span><br>
|
|
|
|
{% endblock %}
|
|
|
|
{% block submit %}
|
|
|
|
<button id='create_submit'>Créer</button>
|
|
|
|
{% endblock %}
|
|
|
|
</form> |