13 lines
328 B
HTML
13 lines
328 B
HTML
{% extends "base.html" %}
|
|||
|
|
{% block content %}
|
||
|
|
<h1>Hello, {{ current_user.username }}!</h1>
|
||
|
|
<p>Welcome to your modern minimal dashboard.</p>
|
||
|
|
|
||
|
|
{% if not current_user.is_authenticated %}
|
||
|
|
<p>
|
||
|
|
<a href="{{ url_for('login') }}">Login</a> or
|
||
|
|
<a href="{{ url_for('register') }}">Register</a>
|
||
|
|
</p>
|
||
|
|
{% endif %}
|
||
|
|
{% endblock %}
|