link_shortener/frontend/index.html
2025-12-12 21:12:47 +02:00

19 lines
738 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Login</title>
<link rel="stylesheet" href="/assets/style.css">
</head>
<body class="flex items-center justify-center min-h-screen">
<div class="bg-[#1e1e1e] p-8 rounded-xl shadow-lg w-96">
<h1 class="text-2xl font-bold mb-6 text-[var(--primary)]">Login</h1>
<form>
<label for="password" class="block mb-2 font-medium text-[var(--text)]">Password</label>
<input type="password" id="password" class="input mb-4" placeholder="Enter your password">
<button type="submit" class="btn w-full">Log In</button>
</form>
</div>
<script type="module" src="/ts/login.js"></script>
</body>
</html>