aboutsummaryrefslogtreecommitdiff
path: root/gn2/wqflask/templates/collections/not_logged_in.html
diff options
context:
space:
mode:
Diffstat (limited to 'gn2/wqflask/templates/collections/not_logged_in.html')
-rw-r--r--gn2/wqflask/templates/collections/not_logged_in.html23
1 files changed, 23 insertions, 0 deletions
diff --git a/gn2/wqflask/templates/collections/not_logged_in.html b/gn2/wqflask/templates/collections/not_logged_in.html
new file mode 100644
index 00000000..49b0e07d
--- /dev/null
+++ b/gn2/wqflask/templates/collections/not_logged_in.html
@@ -0,0 +1,23 @@
+{% extends "base.html" %}
+{% block title %}Your Collections{% endblock %}
+{% block content %}
+<!-- Start of body -->
+ {{ header("Not logged in") }}
+
+
+ <div id="collections_holder" class="container">
+ <div class="page-header">
+ <h1>Please log in in order to use this feature.</h1>
+ </div>
+ </div>
+
+<!-- End of body -->
+
+{% endblock %}
+
+{% block js %}
+ <script language="javascript" type="text/javascript" src="{{ url_for('js', filename='js_alt/timeago.min.js') }}"></script>
+ <script>
+ $('body').timeago();
+ </script>
+{% endblock %}