Update Redesign to v0.5.1-beta

This commit is contained in:
2022-01-06 00:55:35 +00:00
parent 82bfde5742
commit 51ed8add2f
15 changed files with 2116 additions and 1243 deletions

View File

@@ -9,7 +9,7 @@
{% csrf_token %}
{% for message in messages %}
<div class="alert alert-danger">
<div class="alert alert-success">
<i class="alert-icon fas fa-check-circle"></i>
<h2 class="alert-title">Fehler:</h2>
<div class="alert-body">{{ message }}</div>
@@ -17,12 +17,12 @@
{% endfor %}
<label class="block">
<span class="text-gray-700">Username</span>
<input type="text" name="username" class="mt-1 block w-full rounded-md border-gray-300 shadow-sm focus:border-blue-300 focus:ring focus:ring-blue-200 focus:ring-opacity-50 placeholder-gray-400" required="required">
<span class="text-gray-700 dark:text-gray-200">Username</span>
<input type="text" name="username" class="mt-1 block w-full rounded-md border-gray-300 dark:border-none shadow-sm focus:border-none focus:ring focus:ring-blue-200 dark:focus:ring-sky-700 focus:ring-opacity-50" required="required">
</label>
<label class="block">
<span class="text-gray-700">Passwort</span>
<input type="password" name="password" class="mt-1 block w-full rounded-md border-gray-300 shadow-sm focus:border-blue-300 focus:ring focus:ring-blue-200 focus:ring-opacity-50 placeholder-gray-400" required="required">
<span class="text-gray-700 dark:text-gray-200">Passwort</span>
<input type="password" name="password" class="mt-1 block w-full rounded-md border-gray-300 dark:border-none shadow-sm focus:border-none focus:ring focus:ring-blue-200 dark:focus:ring-sky-700 focus:ring-opacity-50" required="required">
</label>
<input type="submit" class="block btn btn-primary" value="Anmelden">
</form>