first commit
This commit is contained in:
commit
672f0deb6a
18 changed files with 1274 additions and 0 deletions
19
frontend/index.html
Normal file
19
frontend/index.html
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
<!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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue