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

{% block app_content %}
{% 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 %}