blob: efaf29e27d8a178e9806466b10f441ae4b685f22 (
plain) (
tree)
|
|
{% 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 %}
|