47 lines
1.2 KiB
HTML
47 lines
1.2 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
|
|
</head>
|
|
<body
|
|
class="bg-black text-white flex items-center justify-center min-h-screen"
|
|
>
|
|
<form
|
|
method="POST"
|
|
action="/login"
|
|
class="bg-gray-900 p-8 rounded-lg shadow-lg w-full max-w-sm space-y-4"
|
|
>
|
|
<div>
|
|
<label for="username" class="block mb-1">Email ou CPF</label>
|
|
<input
|
|
type="text"
|
|
id="username"
|
|
name="username"
|
|
class="w-full p-2 rounded bg-gray-800 text-white border border-gray-700"
|
|
required
|
|
/>
|
|
</div>
|
|
|
|
<div>
|
|
<label for="password" class="block mb-1">Senha</label>
|
|
<input
|
|
type="password"
|
|
id="password"
|
|
name="password"
|
|
class="w-full p-2 rounded bg-gray-800 text-white border border-gray-700"
|
|
required
|
|
/>
|
|
</div>
|
|
|
|
<button
|
|
type="submit"
|
|
class="w-full bg-blue-600 hover:bg-blue-700 transition-colors p-2 rounded font-semibold"
|
|
>
|
|
Entrar
|
|
</button>
|
|
</form>
|
|
</body>
|
|
</html>
|