12 lines
297 B
HTML
12 lines
297 B
HTML
<!DOCTYPE html>
|
|
<div class="logo-div">
|
|
<a href="{{ url_for('render_home')}}">
|
|
<img
|
|
src="{{ url_for('static', filename="NP-Logo-Primary-FC.png") }}"
|
|
alt="Northpass Full Color Logo"
|
|
>
|
|
</img></a>
|
|
{% for message in get_flashed_messages() %}
|
|
<h2> {{ message }} </h2>
|
|
{% endfor %}
|