diff options
| author | rubenwardy <rw@rubenwardy.com> | 2019-01-04 17:57:00 +0000 |
|---|---|---|
| committer | rubenwardy <rw@rubenwardy.com> | 2019-01-04 17:57:00 +0000 |
| commit | fbf374ff5d72722d14f07cc4ee71a5182212db94 (patch) | |
| tree | 4a2748373013db133a93476e302b9b3aef133c92 /app/templates/users/send_email.html | |
| parent | a68ac9cb4d7d3bd46279cf202a423329fd035e0c (diff) | |
| download | cheatdb-fbf374ff5d72722d14f07cc4ee71a5182212db94.tar.xz | |
Add manual email support
Diffstat (limited to 'app/templates/users/send_email.html')
| -rw-r--r-- | app/templates/users/send_email.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/app/templates/users/send_email.html b/app/templates/users/send_email.html new file mode 100644 index 0000000..d802c7d --- /dev/null +++ b/app/templates/users/send_email.html @@ -0,0 +1,18 @@ +{% extends "base.html" %} + +{% block title %} + Send Email +{% endblock %} + +{% block content %} +<h1>Send Email</h1> + +{% from "macros/forms.html" import render_field, render_submit_field %} +<form action="" method="POST" class="form" role="form"> + {{ form.hidden_tag() }} + {{ render_field(form.subject) }} + {{ render_field(form.text, fieldclass="form-control markdown") }} + {{ render_submit_field(form.submit) }} +</form> + +{% endblock %} |
