Login HTML use Base HTML
This commit is contained in:
@@ -1,14 +1,9 @@
|
|||||||
{% load static %}
|
{% extends 'accounts/base.html' %}
|
||||||
<!DOCTYPE html>
|
{% block title %}Login{% endblock %}
|
||||||
<html lang="en">
|
{% block stylesheet %}accounts/css/login.css{% endblock %}
|
||||||
<head>
|
{% block content %}
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<title>Login</title>
|
|
||||||
<link rel="stylesheet" href="{% static 'accounts/css/login.css' %}">
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div class="login-container">
|
<div class="login-container">
|
||||||
|
<h2>Anmeldung</h2>
|
||||||
<form method="post">
|
<form method="post">
|
||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
<div class="input-group">
|
<div class="input-group">
|
||||||
@@ -20,5 +15,4 @@
|
|||||||
<button type="submit" class="login-button">LOG IN</button>
|
<button type="submit" class="login-button">LOG IN</button>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
{% endblock %}
|
||||||
</html>
|
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
{% extends 'accounts/base.html' %}
|
{% extends 'accounts/base.html' %}
|
||||||
{% block title %}Registrierung{% endblock %}
|
{% block title %}Registrierung{% endblock %}
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<h1>Register</h1>
|
<h2>Registrierung</h2>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
Reference in New Issue
Block a user