Update Home

This commit is contained in:
jvs
2025-01-24 16:53:15 +01:00
parent 421d287d48
commit f153ee5751

View File

@@ -1,17 +1,9 @@
{% load static %} {% extends 'accounts/base.html'%}
<!DOCTYPE html> {% block title %}Home{% endblock %}
<html lang="de"> {% block content %}
<head> <h1>Moin moin!</h1>
<meta charset="UTF-8"> <form action="{% url 'logout' %}" method="post">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> {% csrf_token %}
<link rel="stylesheet" href="{% static 'accounts/css/base.css' %}"> <button type="submit">Abmelden</button>
<title>Home</title> </form>
</head> {% endblock %}
<body>
<h1>Moin moin!</h1>
<form action="{% url 'logout' %}" method="post">
{% csrf_token %}
<button type="submit">Abmelden</button>
</form>
</body>
</html>