-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdone.html
More file actions
21 lines (16 loc) · 715 Bytes
/
done.html
File metadata and controls
21 lines (16 loc) · 715 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{% set title = "Annotate" %}
{% extends "template.html" %}
{% block container %}
<h1>You're all done!</h1>
{% if 'mail_sent' in request.arguments() %}
<div class="alert alert-success">Your message has been sent.</div>
{% endif %}
<form action="/mail" method="post">
If you have any comments, ran into bugs, or have something else you'd like to share with us, please leave your thoughts below:
<br><br>
<textarea class="form-control" rows="10" name="message"></textarea>
<br>
<button type="submit" class="btn btn-default">Submit</button>
</form><br><br><br>
<p class="lead">Thank you very much for participating in our experiment!</p>
{% endblock %}