diff options
Diffstat (limited to 'servo/templates/checkin/confirmation.html')
-rw-r--r-- | servo/templates/checkin/confirmation.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/servo/templates/checkin/confirmation.html b/servo/templates/checkin/confirmation.html new file mode 100644 index 0000000..00125c3 --- /dev/null +++ b/servo/templates/checkin/confirmation.html @@ -0,0 +1,13 @@ +{% extends "checkin/index.html" %} +{% load i18n %} + +{% block main %} +<div class="page-header"> + <h2>{% trans "Confirmation" %}</h2> +</div> +<form method="post" action=""> + {% csrf_token %} + {% include "form_snippet.html" %} + <button type="submit" class="btn btn-primary">{% trans "Submit" %}</button> +</form> +{% endblock main %} |