hostile-takeover/stats/sendchat.xhtml
2014-07-06 17:47:28 -07:00

15 lines
524 B
HTML

{% extends "command.xhtml" %}
{% block html_title %}Send Chat{% endblock %}
{% block page_content %}
<h1 class="pageTitle">SEND CHAT</h1>
{{ block.super }}
{% endblock %}
{% block form_elements %}
<p>Name: <input name="name" maxlength="2048" autocorrect="off" autocapitalize="off" type="text" value="{{ name }}"/></p>
<p>Message: <input name="message" maxlength="2048" autocorrect="off" autocapitalize="off" type="text" value="{{ message }}" style="width:80%;"/></p>
<input type="submit" value="Submit" />
{% endblock %}