summaryrefslogtreecommitdiffstats
path: root/apps/it/templates/login.html
diff options
context:
space:
mode:
authorFilipp Lepalaan <f@230.to>2014-02-20 12:44:49 +0200
committerFilipp Lepalaan <f@230.to>2014-02-20 12:44:49 +0200
commit3321241b61766045a68a3d607b67e11a95014e87 (patch)
treed13ce50a7c46f986f403733e9922e766665e7d2b /apps/it/templates/login.html
parent75ad7e4bd7d69243e7e5281c2642f00478fb072d (diff)
downloadpudding-3321241b61766045a68a3d607b67e11a95014e87.tar.gz
pudding-3321241b61766045a68a3d607b67e11a95014e87.tar.bz2
pudding-3321241b61766045a68a3d607b67e11a95014e87.zip
Require logins, removed jquery UI
Diffstat (limited to 'apps/it/templates/login.html')
-rwxr-xr-xapps/it/templates/login.html57
1 files changed, 57 insertions, 0 deletions
diff --git a/apps/it/templates/login.html b/apps/it/templates/login.html
new file mode 100755
index 0000000..03d4656
--- /dev/null
+++ b/apps/it/templates/login.html
@@ -0,0 +1,57 @@
+{% load i18n %}
+{% load bootstrap3 %}
+<!DOCTYPE html>
+<html>
+
+<head>
+
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+
+ <title>IT Login</title>
+
+ <!-- Core CSS - Include with every page -->
+ <link href="{{ STATIC_URL }}css/bootstrap.min.css" rel="stylesheet">
+ <link href="{{ STATIC_URL }}font-awesome/css/font-awesome.css" rel="stylesheet">
+
+ <!-- SB Admin CSS - Include with every page -->
+ <link href="{{ STATIC_URL }}css/sb-admin.css" rel="stylesheet">
+
+</head>
+
+<body>
+
+ <div class="container">
+ <div class="row">
+ <div class="col-md-4 col-md-offset-4">
+ <div class="login-panel panel panel-default">
+ <div class="panel-heading">
+ <h3 class="panel-title">{% trans "Please Sign In" %}</h3>
+ </div>
+ <div class="panel-body">
+ {% bootstrap_messages %}
+ <form role="form" action="" method="post">
+ {% csrf_token %}
+ <fieldset>
+ {% bootstrap_form form %}
+ <!-- Change this to a button or input when using this as a form -->
+ <button class="btn btn-lg btn-success btn-block" type="submit">{% trans "Login" %}</button>
+ </fieldset>
+ </form>
+ </div>
+ </div>
+ </div>
+ </div>
+ </div>
+
+ <!-- Core Scripts - Include with every page -->
+ <script src="{{ STATIC_URL }}js/jquery-1.10.2.js"></script>
+ <script src="{{ STATIC_URL }}js/bootstrap.min.js"></script>
+ <script src="{{ STATIC_URL }}js/plugins/metisMenu/jquery.metisMenu.js"></script>
+
+ <!-- SB Admin Scripts - Include with every page -->
+ <script src="{{ STATIC_URL }}js/sb-admin.js"></script>
+
+</body>
+
+</html>