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:
foreverpyrite
2025-12-02 19:54:00 -05:00
commit 8fe3f7d756
18 changed files with 4020 additions and 0 deletions

21
website/index.html Normal file
View 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>