Files
autoreply-editor/autoreply_editor/templates/index.html

20 lines
414 B
HTML
Raw Normal View History

2021-05-18 19:32:59 +02:00
<!DOCTYPE html>
2021-05-19 10:23:47 +02:00
<head>
<title>Autoreply Editor</title>
</head>
2021-05-18 19:32:59 +02:00
2021-05-19 10:23:47 +02:00
<body>
<h1>Autoreply Editor</h1>
<p>
Below you can see the current text of your autoreply message. You
can edit and update it directly below:
</p>
<form action="" method="POST">
<textarea name="message" cols="120" rows="20">{{ message }}</textarea>
<br />
<input type="submit" value="Update">
</form>
</body>
2021-05-18 19:32:59 +02:00
</html>