44 lines
1.2 KiB
HTML
44 lines
1.2 KiB
HTML
{% load static %}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<meta name="description" content="">
|
|
<meta name="author" content="">
|
|
|
|
<title>Login</title>
|
|
|
|
<!-- Custom fonts for this template-->
|
|
<link href="{% static 'vendor/fontawesome-free/css/all.min.css'%}" rel="stylesheet" type="text/css">
|
|
|
|
<!-- Custom styles for this template-->
|
|
<link href="{% static 'css/sb-admin.css'%}" rel="stylesheet">
|
|
|
|
</head>
|
|
|
|
<body class="bg-dark">
|
|
|
|
<div class="container">
|
|
<div class="card card-login mx-auto mt-5">
|
|
<div class="card-header">Logout</div>
|
|
<div class="card-body">
|
|
<p>You have logged out successfully, <a href="{% url 'login' %}">Login again</a> </p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Bootstrap core JavaScript-->
|
|
<script src="{% static 'vendor/jquery/jquery.min.js'%}"></script>
|
|
<script src="{%static 'vendor/bootstrap/js/bootstrap.bundle.min.js'%}"></script>
|
|
|
|
<!-- Core plugin JavaScript-->
|
|
<script src="{% static 'vendor/jquery-easing/jquery.easing.min.js'%}"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|