24 lines
787 B
HTML
24 lines
787 B
HTML
{% load static %}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Login</title>
|
|
<link rel="stylesheet" href="{% static 'css/login.css' %}">
|
|
</head>
|
|
<body>
|
|
<div class="login-container">
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
<div class="input-group">
|
|
<input type="text" name="username" id="username" required placeholder="BENUTZERNAME">
|
|
</div>
|
|
<div class="input-group">
|
|
<input type="password" name="password" id="password" required placeholder="PASSWORT">
|
|
</div>
|
|
<button type="submit" class="login-button">LOG IN</button>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html> |