mirror of
https://github.com/spiffcode/hostile-takeover.git
synced 2026-02-01 20:13:55 +00:00
15 lines
524 B
HTML
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 %}
|