From 5d8b44f847f259c7c01e5908d056f2337636cff5 Mon Sep 17 00:00:00 2001 From: Gertjan van den Burg Date: Tue, 19 Mar 2019 16:04:44 +0000 Subject: Make landing page make more sense --- app/templates/index.html | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) (limited to 'app/templates') 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 %} -

Hi, {{ current_user.username }}!

+{% if current_user.is_authenticated %} +Hi, {{ current_user.username }}! +{% else %} +
+
+ Welcome to AnnotateChange a tool for annotating time + series data for changepoint analysis. +
+
+ Please log in or register to get started. +
+
+{% endif %} {% endblock %} -- cgit v1.2.3