JourneyJoker/templates/localauth/authbase.html
Klaus-Uwe Mitterer 6d67541571 Demo notifications
Fixed a few views
Other stuff
2021-04-08 11:30:19 +02:00

64 lines
2.6 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% load static %}
<!doctype html>
<html lang="en">
<head>
<title>JourneyJoker - {{ title }}</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="icon" href="{% static "frontend/images/favicon.png" %}" type="image/x-icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Lato:300,300i,400,400i,700,700i,900,900i%7CMerriweather:300,300i,400,400i,700,700i,900,900i" rel="stylesheet">
<!-- Bootstrap Stylesheet -->
<link rel="stylesheet" href="{% static "frontend/css/bootstrap.min4.2.1.css" %}">
<link rel="stylesheet" type="text/css" href="{% static "frontend/css/bootstrap-reboot4.2.1.css" %}">
<!-- Sidebar Stylesheet -->
<link rel="stylesheet" type="text/css" href="{% static "frontend/css/jquery.mCustomScrollbar.min.css" %}">
<!-- Font Awesome Stylesheet -->
<link rel="stylesheet" href="{% static "frontend/css/font-awesome.min.css" %}">
<!-- Custom Stylesheets -->
<link rel="stylesheet" href="{% static "frontend/css/style.css" %}">
<link rel="stylesheet" id="cpswitch" href="{% static "frontend/css/orange.css" %}">
<link rel="stylesheet" href="{% static "frontend/css/responsive.css" %}">
</head>
<body>
<!--====== LOADER =====-->
<div class="loader"></div>
<!--===== FULL-PAGE-FORM ====-->
<section>
<div class="colored-border"></div>
<div id="full-page-form">
<div class="container">
<div class="row">
<div class="col-md-12">
{% block formspace %}
{% endblock %}
<p class="full-page-copyright">© 2020 2021 <a href="https://kumi.systems/">Kumi Systems e.U.</a> All rights reserved.</p>
</div><!-- end columns -->
</div><!-- end row -->
</div><!-- end container -->
</div><!-- end full-page-form -->
<div class="colored-border"></div>
</section>
<!-- Page Scripts Starts -->
<script src="{% static "frontend/js/jquery-3.3.1.min.js" %}"></script>
<script src="{% static "frontend/js/jquery.mCustomScrollbar.concat.min.js" %}"></script>
<script src="{% static "frontend/js/bootstrap.min4.2.1.js" %}"></script>
<script src="{% static "frontend/js/custom-navigation.js" %}"></script>
<!-- Page Scripts Ends -->
</body>
</html>