Nicer register_button

This commit is contained in:
2025-01-31 15:31:30 +01:00
parent 4fd09afe84
commit 5c9ff0abe5
3 changed files with 13 additions and 2 deletions

View File

@@ -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>

View File

@@ -14,6 +14,6 @@
</div>
<button type="submit" class="login-button">LOG IN</button>
</form>
<button><a href="{% url 'register' %}">Registrierung</a></button>
<button class="register_button"><a href="{% url 'register' %}" class="register_link">Noch kein Konto?</a></button>
</div>
{% endblock %}