aboutsummaryrefslogtreecommitdiffstats
path: root/servo/templates/login.html
diff options
context:
space:
mode:
authorFilipp Lepalaan <filipp@mac.com>2015-08-04 10:11:24 +0300
committerFilipp Lepalaan <filipp@mac.com>2015-08-04 10:11:24 +0300
commit63b0fc6269b38edf7234b9f151b80d81f614c0a3 (patch)
tree555de3068f33f8dddb4619349bbea7d9b7c822fd /servo/templates/login.html
downloadServo-63b0fc6269b38edf7234b9f151b80d81f614c0a3.tar.gz
Servo-63b0fc6269b38edf7234b9f151b80d81f614c0a3.tar.bz2
Servo-63b0fc6269b38edf7234b9f151b80d81f614c0a3.zip
Initial commit
First public commit
Diffstat (limited to 'servo/templates/login.html')
-rwxr-xr-xservo/templates/login.html26
1 files changed, 26 insertions, 0 deletions
diff --git a/servo/templates/login.html b/servo/templates/login.html
new file mode 100755
index 0000000..d7e6fac
--- /dev/null
+++ b/servo/templates/login.html
@@ -0,0 +1,26 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+ <link rel="icon" type="image/png" href="{{ STATIC_URL }}images/favicon.png">
+ <link rel="apple-touch-icon" type="image/png" href="{{ STATIC_URL }}images/apple-touch-icon.png">
+ <script src="{{ STATIC_URL }}js/jquery.min.js"></script>
+ <script src="{{ STATIC_URL }}js/bootstrap/js/bootstrap.min.js"></script>
+ <link href="{{ STATIC_URL }}js/bootstrap/css/bootstrap.min.css" rel="stylesheet">
+ <link href="{{ STATIC_URL }}css/login.css" rel="stylesheet">
+ <title>{{ title }} | Servo</title>
+</head>
+<body>
+{% if messages %}
+ {% for message in messages %}
+ <div class="alert alert-block alert-{{ message.tags }}">
+ <button type="button" class="close" data-dismiss="alert">&times;</button>
+ <i class="icon-warning-sign"></i> <strong>{{ message }}</strong>
+ </div>
+ {% endfor %}
+ {% endif %}
+ <div class="login-container">
+ {% block content %}{% endblock content %}
+ </div>
+</body>
+</html>