22 lines
841 B
HTML
22 lines
841 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Sniph Bank</title>
|
|
<link href="./css/style.css" rel="stylesheet">
|
|
</head>
|
|
<body class="min-h-[100vh] min-w-[100vw]">
|
|
<header class="text-primary flex items-center h-[35vh]">
|
|
<h1 class="text-8xl text-center text-primary w-full">Sniph Bank</h1>
|
|
</header>
|
|
<main class="flex justify-center items-center">
|
|
<form method="post" action="/login" class="flex gap-y-2 flex-col card w-[20vw]" autocomplete="off">
|
|
<input type="text" required name="username" placeholder="Username" class="input w-full">
|
|
<input type="password" required name="password" placeholder="Password" class="input w-full">
|
|
<input type="submit" class="btn btn-primary">
|
|
</form>
|
|
</main>
|
|
</body>
|
|
</html>
|