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

20 lines
414 B
HTML

<!DOCTYPE html>
<head>
<title>Autoreply Editor</title>
</head>
<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>
</html>