-
Piotr Gawron authoredPiotr Gawron authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
400.html 2.44 KiB
{% load static %}<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Scheduling System | Error page</title>
<!-- Tell the browser to be responsive to screen width -->
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
{% block styles %}
<!-- Bootstrap 3.3.6 -->
<link rel="stylesheet" href="{% static 'npm/bootstrap/dist/css/bootstrap.min.css' %}">
<!-- Font Awesome -->
<link rel="stylesheet" href="{% static 'npm/font-awesome/css/font-awesome.min.css'%}">
<!-- Ionicons -->
<link rel="stylesheet" href="{% static 'npm/ionicons/css/ionicons.min.css'%}">
<!-- Theme style -->
<link rel="stylesheet" href="{% static 'npm/admin-lte/dist/css/AdminLTE.min.css' %}">
<link rel="stylesheet" href="{% static 'npm/admin-lte/dist/css/skins/skin-green.min.css' %}">
<!-- iCheck -->
<link rel="stylesheet" href="{% static 'npm/icheck/skins/square/blue.css' %}">
<style>
.login-logo-h5 {
margin-top: -10px;
}
.login-page-bg {
background: url('{% static 'background.jpg' %}');
}
</style>
{% endblock styles %}
</head>
<body class="hold-transition login-page login-page-bg">
<div class="login-box">
<div class="login-box-body">
<div class="login-logo">
<b>SMA</b>SCH
<h5 class="login-logo-h5">(Smart Scheduling)</h5>
</div>
<!-- /.login-logo -->
<div class="callout callout-danger">
<h4>Sorry, there were some problems handling your request</h4>
<p>Bad request.</p>
</div>
</div>
<!-- /.login-box-body -->
</div>
<!-- /.login-box -->
{% block scripts %}
<!-- jQuery 2.2.3 -->
<script src="{% static 'npm/jquery/dist/jquery.min.js' %}"></script>
<!-- Bootstrap 3.3.6 -->
<script src="{% static 'npm/bootstrap/dist/js/bootstrap.min.js' %}"></script>
<!-- iCheck -->
<script src="{% static 'npm/icheck/icheck.min.js' %}"></script>
<script>
$(document).ready(function () {
$('input').iCheck({
checkboxClass: 'icheckbox_square-blue',
radioClass: 'iradio_square-blue',
increaseArea: '20%' // optional
});
});
</script>
{% endblock scripts %}
</body>
</html>