KevaChat is distributed chat platform for open, uncensored and privacy respectable communication with permanent data storage in blockchain.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
1.1 KiB

{% if enabled %}
<form name="post" action="{{ path('room_post', { 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 != 'ip' %}
<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 sign == 'ip' %}
<input type="radio" name="sign" value="ip" id="form-post-sign-ip" checked="checked" />
{% else %}
<input type="radio" name="sign" value="ip" id="form-post-sign-ip" />
{% endif %}
<label for="form-post-sign-ip">
@{{ ip }}
</label>
<button type="submit">{{ 'send' | trans }}</button>
</form>
{% endif %}