Add manual email support

This commit is contained in:
rubenwardy
2019-01-04 17:57:00 +00:00
parent a68ac9cb4d
commit fbf374ff5d
5 changed files with 72 additions and 5 deletions

View File

@@ -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 %}