b779ecaf14
All templates overridden for easier custom texts. Login_base.html for recovery and login pages
38 lines
1.0 KiB
HTML
38 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
|
|
{% load i18n %}
|
|
{% load static %}
|
|
|
|
<html>
|
|
<head>
|
|
<title>SIK - Login</title>
|
|
<meta name="viewport" charset="utf-8" content="width=device-width" />
|
|
|
|
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
|
|
<script src="{% static "js/lib/jquery-3.1.0.min.js" %}"></script>
|
|
<script src="{% static "js/lib/bootstrap.min.js" %}"></script>
|
|
|
|
<link rel="stylesheet" href="{% static "css/lib/bootstrap.min.css" %}">
|
|
<link rel="stylesheet" href="{% static "css/base.css" %}">
|
|
<link rel="stylesheet" href="{% static "css/login.css" %}">
|
|
|
|
</head>
|
|
<body>
|
|
{% block header %}
|
|
<div class="header">
|
|
{% include "sik_header.html" %}
|
|
</div>
|
|
{% endblock %}
|
|
|
|
<div class="page-content">
|
|
{% block content %}
|
|
{% endblock %}
|
|
</div>
|
|
<div class="footer">
|
|
{% block footer %}
|
|
{% include "footer.html" %}
|
|
{% endblock footer %}
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|