context-hub/templates/login.html

26 lines
1.7 KiB
HTML

{% extends "base.html" %}
{% block content %}
<div class="flex items-center justify-center h-[70vh]">
<div class="bg-gray-800 p-8 rounded-lg shadow-xl w-full max-w-md border border-gray-700">
<h2 class="text-2xl font-bold text-nyora mb-6 text-center">Nyora Infrastructure</h2>
<form action="/auth/login" method="POST" class="space-y-6">
<div>
<label for="username" class="block text-sm font-medium text-gray-400">Username</label>
<input type="text" id="username" name="username" placeholder="Identifiant" required
class="mt-1 block w-full px-4 py-3 bg-gray-900 border border-gray-600 rounded-md text-white placeholder-gray-500 focus:outline-none focus:ring-2 focus:ring-nyora focus:border-transparent transition">
</div>
<div>
<label for="password" class="block text-sm font-medium text-gray-400">Password</label>
<input type="password" id="password" name="password" placeholder="Mot de passe" required
class="mt-1 block w-full px-4 py-3 bg-gray-900 border border-gray-600 rounded-md text-white placeholder-gray-500 focus:outline-none focus:ring-2 focus:ring-nyora focus:border-transparent transition">
</div>
<button type="submit"
class="w-full flex justify-center py-3 px-4 border border-transparent rounded-md shadow-sm text-sm font-medium text-gray-900 bg-nyora hover:bg-yellow-500 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-nyora focus:ring-offset-gray-900 transition">
Sign In
</button>
</form>
</div>
</div>
{% endblock %}