SOITA/templates/authBase.html

23 lines
510 B
HTML
Raw Normal View History

2021-12-09 23:25:35 +01:00
<!DOCTYPE html>
{% load static %}
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="{% static 'style.css' %}">
<title>SOITA | {% block title %}{% endblock %}</title>
<meta name="description" content="{% block description %}{% endblock %}">
</head>
2021-12-29 19:31:10 +01:00
<body style="background-color: #FF0B7E">
2021-12-09 23:25:35 +01:00
<div class="titleBar">
SOITA
</div>
2021-12-10 15:39:22 +01:00
<div class="authContent">
{% block content %}
{% endblock %}
2021-12-09 23:25:35 +01:00
</div>
</body>
</html>