31f43d5 by Arvind at 2013-01-07 | 1 | <!doctype html> |
544de4f by Anon Ray at 2013-06-27 | 2 | <html> |
3 | <head> |
|
4 | <title>SWeeT Store</title> |
|
5 | <link rel=stylesheet type=text/css href="{{ url_for('static', filename='css/bootstrap.min.css') }}"> |
|
daaf4fd by Anon Ray at 2014-01-28 | 6 | <link rel=stylesheet type=text/css href="{{ url_for('static', filename='css/style.css') }}"> |
544de4f by Anon Ray at 2013-06-27 | 7 | {% block head %}{% endblock %} |
8 | </head> |
|
9 | <body> |
|
10 | <div class="container"> |
|
11 | <div class="page"> |
|
12 | <h1>SWeeT Store</h1> |
|
13 | <div class=metanav> |
|
9f6e341 by Anon Ray at 2013-06-27 | 14 | <a href="{{ url_for('show_entries') }}"> Home </a> | |
544de4f by Anon Ray at 2013-06-27 | 15 | {% if not session.logged_in %} |
16 | <a href="{{ url_for('login') }}">Log In</a> |
|
17 | {% else %} |
|
9f6e341 by Anon Ray at 2013-06-27 | 18 | <a href="{{ url_for('user') }}"> Users </a> | |
544de4f by Anon Ray at 2013-06-27 | 19 | <a href="{{ url_for('serveUser') }}">Add User</a> | |
20 | <a href="{{ url_for('logout') }}">Log Out</a> |
|
21 | {% endif %} |
|
22 | </div> |
|
23 | {% for message in get_flashed_messages() %} |
|
daaf4fd by Anon Ray at 2014-01-28 | 24 | <div class="flash">{{ message }}</div> |
544de4f by Anon Ray at 2013-06-27 | 25 | {% endfor %} |
26 | {% block body %}{% endblock %} |
|
27 | </div> |
|
28 | </div> |
|
29 | <script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script> |
|
30 | <!--script>window.jQuery || document.write('<script src="{{ url_for('static', filename='js/jquery-1.9.1.min.js')}}"><\/script>')</script--> |
|
31 | </body> |
|
32 | </html> |