summaryrefslogtreecommitdiffstats
path: root/apps/it/templates/login.html
diff options
context:
space:
mode:
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>