Resolve "Überarbeitung des Kontos für Umbenennung und co." Closes #81 See merge request enrichment-2024/qivip!65
33 lines
1.9 KiB
HTML
33 lines
1.9 KiB
HTML
{% extends 'base.html' %}
|
|
{% load static %}
|
|
{% block title %}Anmeldung{% endblock %}
|
|
{% block content %}
|
|
<div class="grid place-content-center h-120 mt-12 mb-12 ">
|
|
<div class="w-80 p-4 m-2 border-blue-600 border-2 rounded-xl shadow-md lg:w-90">
|
|
<h2 class="text-2xl text-center p-4 font-black">Anmeldung</h2>
|
|
<form class="space-y-4" method="post">
|
|
{% if form.errors %}
|
|
<div class=" items-center text-red-600 font-black overflow-x-auto break-words text-center">
|
|
<ul>
|
|
{% for field, errors in form.errors.items %}
|
|
{% for error in errors %}
|
|
<li>{{ error }}</li>
|
|
{% endfor %}
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
{% endif %}
|
|
{% csrf_token %}
|
|
<div class="items-center w-full">
|
|
<input class=" w-full p-3 rounded-full bg-gray-200 focus:scale-105 transition duration-200 font-black" type="text" name="username" id="username" required placeholder="BENUTZERNAME">
|
|
</div>
|
|
<div class="items-center w-full">
|
|
<input class=" w-full p-3 rounded-full bg-gray-200 focus:scale-105 transition duration-200 font-black" type="password" name="password" id="password" required placeholder="PASSWORT">
|
|
</div>
|
|
<button class="w-full p-3 rounded-full bg-blue-600 text-white font-black hover:scale-105 transition duration-200 cursor-pointer" type="submit" class="login-button">Anmelden</button>
|
|
</form>
|
|
<button class="text-center text-sm w-full mt-2 font-light text-blue-600"><a href="{% url 'accounts:register' %}" class="register_link">Noch kein Konto?</a></button>
|
|
<button class="text-center text-sm w-full mt-2 font-light text-blue-600"><a href="{% url 'accounts:password_reset' %}" class="register_link">Passwort vergessen?</a></button>
|
|
</div>
|
|
</div>
|
|
{% endblock %} |