forked from enviPath/enviPy
67 lines
1.5 KiB
HTML
67 lines
1.5 KiB
HTML
{% load static %}
|
|
|
|
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>enviPath - Login</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
<!-- Bootstrap 3.3.7 CSS -->
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
|
|
/>
|
|
|
|
<style>
|
|
body,
|
|
html {
|
|
margin: 0;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.bg-blur {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: url('{% static "/images/enviPy-screenshot.png" %}')
|
|
no-repeat center center/cover;
|
|
filter: blur(8px);
|
|
z-index: -1;
|
|
}
|
|
|
|
.center-button {
|
|
position: absolute;
|
|
top: 70%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
z-index: 1;
|
|
}
|
|
|
|
.static-content {
|
|
position: absolute;
|
|
top: 35%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
z-index: 1;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<!-- Blurred Background -->
|
|
<div class="bg-blur"></div>
|
|
<div class="bg-dim"></div>
|
|
|
|
<div class="static-content">
|
|
{% block content %}
|
|
{% endblock content %}
|
|
</div>
|
|
<!-- Bootstrap 3.3.7 JS + jQuery -->
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
|
|
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
|
</body>
|
|
</html>
|