aboutsummaryrefslogtreecommitdiff
path: root/app/templates/index.html
blob: efaf29e27d8a178e9806466b10f441ae4b685f22 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{% extends "base.html" %}

{% block content %}
{% if current_user.is_authenticated %}
<h1>Hi, {{current_user.pref_name}}!</h1>
{% else %}
<h1>Hello!</h1>
<p>Much of this tool requires authentication. Head on over <a
                                                                   href="{{url_for('auth.login')}}">here</a>
to login, or <a href="{{url_for('auth.register')}}">here</a> to register.
{% endif %}

{% endblock %}