Changed directory structure and yapped...a lot
Still can start blabbering like crazy in the HTML if I feel like it.
This commit is contained in:
21
website/index.html
Normal file
21
website/index.html
Normal file
@@ -0,0 +1,21 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user