mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-16 07:50:16 +02:00
- Deprecated CSS atrributes removed - HTML fixes - Mandatory attributes added - Missing semicolons added - Missing closing tags added - Missing label association in forms added/fixed - Missing quotes added - Closing tags that have no opening tag removed - Bootstrap fixes - Unused template tags removed
56 lines
1.9 KiB
HTML
56 lines
1.9 KiB
HTML
{% load static %}
|
|
<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">
|
|
<meta name="description" content="">
|
|
<meta name="author" content="">
|
|
<meta property="og:title" content="{{ SITE_NAME }}">
|
|
<meta property="og:image" content="{{ request.scheme }}://{{ request.get_host }}{% static 'allianceauth/icons/apple-touch-icon.png' %}">
|
|
<meta property="og:description" content="Alliance Auth - An auth system for EVE Online to help in-game organizations manage online service access.">
|
|
|
|
{% include 'allianceauth/icons.html' %}
|
|
|
|
<title>{% block title %}{% block page_title %}{% endblock page_title %} - {{ SITE_NAME }}{% endblock title %}</title>
|
|
|
|
{% include 'bundles/bootstrap-css.html' %}
|
|
{% include 'bundles/fontawesome.html' %}
|
|
{% block extra_include %}
|
|
{% endblock %}
|
|
|
|
<style>
|
|
body {
|
|
background: url('{% static 'allianceauth/authentication/img/background.jpg' %}') no-repeat center center fixed;
|
|
-webkit-background-size: cover;
|
|
-moz-background-size: cover;
|
|
-o-background-size: cover;
|
|
background-size: cover;
|
|
}
|
|
|
|
.panel-transparent {
|
|
background: rgba(48, 48, 48, 0.7);
|
|
color: #ffffff;
|
|
}
|
|
|
|
.panel-body {
|
|
|
|
}
|
|
|
|
#lang-select {
|
|
width: 40%;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
{% block extra_style %}
|
|
{% endblock %}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container" style="margin-top:150px;">
|
|
{% block content %}
|
|
{% endblock %}
|
|
</div>
|
|
</body>
|
|
</html>
|