Statistics
| Branch: | Tag: | Revision:

root / pithos / im / templates / local_base.html @ bee5ffa6

History | View | Annotate | Download (716 Bytes)

1
<!DOCTYPE html>
2
<html>
3
<head>
4
  <meta charset="utf-8" />
5
  <title>{{ title|default:"User Login" }}</title>
6
  <link rel="stylesheet" href="/im/static/bootstrap.css">
7
  <script src="/im/static/jquery.js"></script>
8
  <script src="/im/static/jquery.tablesorter.js"></script>
9
  <script src="/im/static/main.js"></script>
10
</head>
11
<body>
12
  <div class="container">
13
    <div style="padding: 5px 0px 0px 0px">
14
      <img src="/im/static/banner.png" width="900" height="200">
15
    </div>
16
    {% block title%}{% endblock title%}
17
    
18
    {% if message %}
19
    <br />
20
    <div class="alert-message.{{ status }}">
21
      <p>{{ message }}</p>
22
    </div>
23
    {% endif %}
24
    
25
    {% block body%}{% endblock %}
26
  </div>
27
</body>
28
</html>