membersystem/src/project/templates/account/pre_login_base.html

20 lines
518 B
HTML
Raw Normal View History

2021-02-27 22:18:27 +00:00
{% load i18n %}
{% load static %}
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<title>Login {{ site.name }}</title>
<link rel="stylesheet" href="{% static "/fonts/inter.css" %}">
<link rel="stylesheet" href="{% static "/css/style.css" %}">
2021-02-27 22:18:27 +00:00
</head>
<body>
<main id="login">
{% block non_login_content %}
{% endblock %}
</main>
2021-02-27 22:18:27 +00:00
</body>
</html>