mirror of
https://github.com/kevachat/webapp.git
synced 2025-01-09 14:27:58 +00:00
32 lines
1.5 KiB
Twig
32 lines
1.5 KiB
Twig
{% if enabled %}
|
|
<form name="post" action="{{ path('room_post', { mode : mode, namespace : namespace }) }}" method="post">
|
|
{% if error %}
|
|
<output name="error" for="form-post-message">{{ error }}</output>
|
|
{% endif %}
|
|
<textarea name="message" id="form-post-message" placeholder="{{ 'enter your message...' | trans }}">{{ message }}</textarea>
|
|
{% if sign == 'anon' or sign == '' %}
|
|
<input type="radio" name="sign" value="anon" id="form-post-sign-anon" checked="checked" />
|
|
{% else %}
|
|
<input type="radio" name="sign" value="anon" id="form-post-sign-anon" />
|
|
{% endif %}
|
|
<label for="form-post-sign-anon">
|
|
{{ 'anon' | trans }}
|
|
</label>
|
|
{% if username %}
|
|
{% if sign == 'username' %}
|
|
<input type="radio" name="sign" value="username" id="form-post-sign-username" checked="checked" />
|
|
{% else %}
|
|
<input type="radio" name="sign" value="username" id="form-post-sign-username" />
|
|
{% endif %}
|
|
<label for="form-post-sign-username">
|
|
@{{ username }}
|
|
</label>
|
|
|
|
|
<a href="{{ path('user_logout') }}">{{ 'logout' | trans }}</a>
|
|
{% else %}
|
|
<input type="radio" name="sign" value="username" id="form-post-sign-username" disabled="disabled" />
|
|
<a href="{{ path('user_login') }}">{{ 'login' | trans }}</a>
|
|
{% endif %}
|
|
<button type="submit">{{ 'send' | trans }}</button>
|
|
</form>
|
|
{% endif %} |