45 lines
1.3 KiB
HTML
45 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Admin Center - Send Update</title>
|
|
<style>
|
|
body { font-family: Arial, sans-serif; padding: 20px; }
|
|
form { max-width: 600px; }
|
|
label { display: block; margin-top: 15px; }
|
|
input[type="text"], textarea { width: 100%; padding: 8px; }
|
|
button { margin-top: 15px; padding: 10px 20px; }
|
|
.flash {
|
|
background-color: #f8d7da;
|
|
color: #721c24;
|
|
padding: 10px;
|
|
margin-bottom: 10px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Send Update Email</h1>
|
|
{% with messages = get_flashed_messages() %}
|
|
{% if messages %}
|
|
{% for message in messages %}
|
|
<div class="flash">{{ message }}</div>
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% endwith %}
|
|
|
|
<form action="{{ url_for('send_update') }}" method="POST">
|
|
<label for="subject">Subject:</label>
|
|
<input type="text" name="subject" required>
|
|
|
|
<label for="body">Body (HTML allowed):</label>
|
|
<textarea name="body" rows="10" required></textarea>
|
|
|
|
<button type="submit">Send Update</button>
|
|
</form>
|
|
<p>
|
|
<a href="{{ url_for('index') }}">Back to Subscribers List</a> |
|
|
<a href="{{ url_for('logout') }}">Logout</a>
|
|
</p>
|
|
</body>
|
|
</html>
|