88 lines
4.1 KiB
PHP
88 lines
4.1 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="pt-BR">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Login - DNSBlock</title>
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
|
|
<style>
|
|
body {
|
|
font-family: 'Inter', sans-serif;
|
|
}
|
|
</style>
|
|
<script>
|
|
tailwind.config = {
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: {
|
|
50: '#fef2f2',
|
|
100: '#fee2e2',
|
|
500: '#ef4444',
|
|
600: '#dc2626',
|
|
700: '#b91c1c',
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
</head>
|
|
|
|
<body class="bg-gray-50 h-screen flex items-center justify-center">
|
|
<div
|
|
class="w-full max-w-md bg-white rounded-2xl shadow-xl overflow-hidden transform transition-all hover:scale-[1.01] duration-300">
|
|
<div class="p-8">
|
|
<div class="text-center mb-8">
|
|
<h1 class="text-3xl font-bold text-gray-900 tracking-tight">DNS<span
|
|
class="text-primary-600">Block</span></h1>
|
|
<p class="text-gray-500 mt-2 text-sm">Acesso ao Sistema de Gestão</p>
|
|
</div>
|
|
|
|
<?php if (isset($error)): ?>
|
|
<div class="bg-red-50 border-l-4 border-primary-500 p-4 mb-6 rounded-r">
|
|
<div class="flex">
|
|
<div class="flex-shrink-0">
|
|
<svg class="h-5 w-5 text-primary-500" viewBox="0 0 20 20" fill="currentColor">
|
|
<path fill-rule="evenodd"
|
|
d="M10 18a8 8 0 100-16 8 8 0 000 16zM8.707 7.293a1 1 0 00-1.414 1.414L8.586 10l-1.293 1.293a1 1 0 101.414 1.414L10 11.414l1.293 1.293a1 1 0 001.414-1.414L11.414 10l1.293-1.293a1 1 0 00-1.414-1.414L10 8.586 8.707 7.293z"
|
|
clip-rule="evenodd" />
|
|
</svg>
|
|
</div>
|
|
<div class="ml-3">
|
|
<p class="text-sm text-red-700"><?= htmlspecialchars($error) ?></p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<form action="/login" method="POST" class="space-y-6">
|
|
<div>
|
|
<label for="email" class="block text-sm font-medium text-gray-700 mb-1">E-mail</label>
|
|
<input type="email" name="email" id="email" required
|
|
class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:ring-2 focus:ring-primary-500 focus:border-primary-500 transition-colors bg-gray-50 focus:bg-white outline-none"
|
|
placeholder="seu@email.com">
|
|
</div>
|
|
|
|
<div>
|
|
<label for="password" class="block text-sm font-medium text-gray-700 mb-1">Senha</label>
|
|
<input type="password" name="password" id="password" required
|
|
class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:ring-2 focus:ring-primary-500 focus:border-primary-500 transition-colors bg-gray-50 focus:bg-white outline-none"
|
|
placeholder="••••••••">
|
|
</div>
|
|
|
|
<button type="submit"
|
|
class="w-full flex justify-center py-3 px-4 border border-transparent rounded-lg shadow-sm text-sm font-medium text-white bg-primary-600 hover:bg-primary-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-primary-500 transition-all transform hover:-translate-y-0.5">
|
|
Entrar
|
|
</button>
|
|
</form>
|
|
</div>
|
|
<div class="px-8 py-4 bg-gray-50 border-t border-gray-100 text-center">
|
|
<p class="text-xs text-gray-400">© <?= date('Y') ?> DNSBlock System. Todos os direitos reservados.</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|