aboutsummaryrefslogtreecommitdiff
path: root/gn2/wqflask/templates/collections/not_logged_in.html
blob: 8d0707ffb0d894b8a69969ce643c01499a659528 (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 "index_page.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 %}