Fix CSS implementation
This commit is contained in:
@@ -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>
|
||||||
|
|||||||
@@ -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>
|
||||||
|
|||||||
Reference in New Issue
Block a user