3224d16197
Co-authored-by: Copilot <copilot@github.com>
9 lines
359 B
HTML
9 lines
359 B
HTML
{% extends "base.html" %} {% block title %}Dashboard — All You Can GET AI{%
|
|
endblock %} {% block content %}
|
|
<div class="card">
|
|
<h1>Welcome{% if user.get('email') %}, {{ user.email }}{% endif %}</h1>
|
|
<p>Role: <strong>{{ user.get('role', 'user') }}</strong></p>
|
|
<a href="{{ url_for('generate') }}" class="btn">Start generating</a>
|
|
</div>
|
|
{% endblock %}
|