You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
1.1 KiB
25 lines
1.1 KiB
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Login - CamMonitor</title>
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
</head>
|
|
<body class="min-h-screen bg-slate-950 text-slate-100">
|
|
<main class="mx-auto flex min-h-screen max-w-sm items-center px-6">
|
|
<form method="post" action="/login" class="w-full space-y-4">
|
|
<h1 class="text-2xl font-semibold">CamMonitor</h1>
|
|
<label class="block space-y-1">
|
|
<span class="text-sm text-slate-300">Username</span>
|
|
<input name="username" autocomplete="username" class="w-full rounded bg-slate-900 px-3 py-2 text-slate-100 ring-1 ring-slate-700">
|
|
</label>
|
|
<label class="block space-y-1">
|
|
<span class="text-sm text-slate-300">Password</span>
|
|
<input name="password" type="password" autocomplete="current-password" class="w-full rounded bg-slate-900 px-3 py-2 text-slate-100 ring-1 ring-slate-700">
|
|
</label>
|
|
<button type="submit" class="w-full rounded bg-indigo-500 px-3 py-2 font-medium text-white">Sign in</button>
|
|
</form>
|
|
</main>
|
|
</body>
|
|
</html>
|
|
|