(style): Adjust order to fix formatting of flash messages

Adjusted order in send_update.html to fix formatting for flash messages.
This commit is contained in:
Blake Ridgway 2025-04-03 13:21:52 -05:00
parent fd199c30dc
commit abd2bef104

View file

@ -10,6 +10,10 @@
<body>
<h1>Send Update Email</h1>
<p>
<a href="{{ url_for('index') }}">Back to Subscribers List</a> |
<a href="{{ url_for('logout') }}">Logout</a>
</p>
{% with messages = get_flashed_messages() %}
{% if messages %}
{% for message in messages %}
@ -27,10 +31,7 @@
<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>