aboutsummaryrefslogtreecommitdiff
path: root/gn2/wqflask/templates/collections/not_logged_in.html
blob: 49b0e07dd3b1171447509532e91628d723850f75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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 %}