Add initial version of nolabs website
diff --git a/app/templates/index.html b/app/templates/index.html
new file mode 100644
index 0000000..4ee011c
--- /dev/null
+++ b/app/templates/index.html
@@ -0,0 +1,14 @@
+{% extends "base.html" %}
+{% import 'bootstrap/wtf.html' as wtf %}
+
+{% block app_content %}
+ <div class="jumbotron">
+ {% if current_user.is_anonymous %}
+ <h3>Please register to access full functionality</h3>
+ <p class="lead"></p>
+ <p><a class="btn btn-lg btn-success" href="register" role="button">Register</a></p>
+ {% else %}
+ <h4>Welcome {{ current_user.username }}!</h4>
+ {% endif %}
+ </div>
+{% endblock %}