style: Changed buttons to use a sensible theme

This commit is contained in:
2025-06-27 21:37:56 +00:00
parent 8873fc332b
commit b6fda05c20
15 changed files with 40 additions and 40 deletions
+1 -1
View File
@@ -16,7 +16,7 @@
<form action="/login" method="POST" class="flex flex-col space-y-4">
<input type="email" name="email" placeholder="Email Address" class="p-3 rounded-lg bg-gray-200 dark:bg-gray-800 border border-gray-600" required>
<input type="password" name="password" placeholder="Password" class="p-3 rounded-lg bg-gray-200 dark:bg-gray-800 border border-gray-600" required>
<button type="submit" class="bg-gradient-to-r bg-gray-300 hover:bg-gray-400 dark:from-gray-500 dark:to-gray-700 hover:dark:from-gray-700 hover:dark:to-gray-500 hover: px-4 py-2 rounded-lg">Login</button>
<button type="submit" class="bg-gray-300 hover:bg-gray-400 dark:bg-gray-700 dark:hover:bg-gray-600 px-4 py-2 rounded-lg">Login</button>
</form>
{% if error %}
<p class="text-red-500 text-center mt-4">{{ error }}</p>