Fix CSS implementation
This commit is contained in:
@@ -6,7 +6,6 @@
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>{% block title %}{% endblock %}</title>
|
||||
<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 %}">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
{% extends 'accounts/base.html' %}
|
||||
{% load static %}
|
||||
{% block title %}Login{% endblock %}
|
||||
{% block stylesheet %}accounts/css/login.css{% endblock %}
|
||||
{% block stylesheet_path %}{% static 'accounts/css/login.css' %}{% endblock %}
|
||||
{% block content %}
|
||||
<div class="login-container">
|
||||
<h2>Anmeldung</h2>
|
||||
|
||||
Reference in New Issue
Block a user