8seg-server/templates/post.html
2023-12-23 14:05:28 +01:00

26 lines
947 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>8seg Web Interface</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
{% with messages = get_flashed_messages() %}
{% if messages %}
<ul class=flashes>
{% for message in messages %}
<li>{{ message }}</li>
{% endfor %}
</ul>
{% endif %}
{% endwith %}
There are approximately {{count}} messages in queue.
<form id="message-form" method="POST">
<input type="hidden" name="csrf_token" value="{{csrf_token}}"/>
<textarea name="message" cols="{{cols}}" rows="{{rows}}" placeholder="Message up to {{cols}} characters per line, displayed line by line">{{message}}</textarea>
<button type="submit">Post</button>
</form>
</body>
<style>