acm-site/acmsite/templates/dashboard.html
2024-03-03 20:29:35 -05:00

16 lines
741 B
HTML

{% extends "layout.html" %}
{% block app_content %}
<h1>Welcome back, {{ current_user.first_name }}!</h1>
<p>For a list of upcoming events, take a look at our <a href="{{
url_for('main.events')
}}">events
listing</a>.
Otherwise, there's not
a whole lot here
unless you're an
officer!</p>
{% endblock app_content %}