Fix CSS implementation

This commit is contained in:
jvs
2025-01-31 15:28:25 +01:00
parent 4fd09afe84
commit 91c941b207
2 changed files with 2 additions and 2 deletions

View File

@@ -6,7 +6,6 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}{% endblock %}</title> <title>{% block title %}{% endblock %}</title>
<link rel="stylesheet" href="{% static 'accounts/css/base.css' %}"> <link rel="stylesheet" href="{% static 'accounts/css/base.css' %}">
<link rel="stylesheet" href="{% static 'accounts/css/login.css' %}">
<link rel="stylesheet" href="{% block stylesheet_path %}{% endblock %}"> <link rel="stylesheet" href="{% block stylesheet_path %}{% endblock %}">
</head> </head>
<body> <body>

View File

@@ -1,6 +1,7 @@
{% extends 'accounts/base.html' %} {% extends 'accounts/base.html' %}
{% load static %}
{% block title %}Login{% endblock %} {% block title %}Login{% endblock %}
{% block stylesheet %}accounts/css/login.css{% endblock %} {% block stylesheet_path %}{% static 'accounts/css/login.css' %}{% endblock %}
{% block content %} {% block content %}
<div class="login-container"> <div class="login-container">
<h2>Anmeldung</h2> <h2>Anmeldung</h2>