mirror of
https://github.com/kevachat/webapp.git
synced 2025-01-09 22:38:01 +00:00
7 lines
377 B
Twig
7 lines
377 B
Twig
<form name="room" action="{{ path('room_add') }}" method="post">
|
|
{% if error %}
|
|
<output name="error" for="form-room-name">{{ error }}</output>
|
|
{% endif %}
|
|
<input type="text" name="name" id="form-room-name" value="{{ name }}" placeholder="{{ 'enter new room name...' | trans }}" />
|
|
<button type="submit">{{ 'add' | trans }}</button>
|
|
</form> |