aboutsummaryrefslogtreecommitdiff
path: root/app/templates
diff options
context:
space:
mode:
Diffstat (limited to 'app/templates')
-rw-r--r--app/templates/index.html14
1 files changed, 13 insertions, 1 deletions
diff --git a/app/templates/index.html b/app/templates/index.html
index 7c6793a..8ac96eb 100644
--- a/app/templates/index.html
+++ b/app/templates/index.html
@@ -1,5 +1,17 @@
{% extends "base.html" %}
{% block app_content %}
-<h1>Hi, {{ current_user.username }}!</h1>
+{% if current_user.is_authenticated %}
+<span>Hi, {{ current_user.username }}!</span>
+{% else %}
+<article>
+ <div>
+ Welcome to <i>AnnotateChange</i> a tool for annotating time
+ series data for changepoint analysis.
+ <br>
+ <br>
+ Please log in or register to get started.
+ </div>
+</article>
+{% endif %}
{% endblock %}