text-display/src/public/login.html
2022-01-27 21:53:15 +01:00

27 lines
No EOL
805 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Login</title>
<link rel="stylesheet" href="../../dist/output.css">
</head>
<body class="bg-slate-600">
<div class="font-sans text-5xl bg-slate-600 place-items-center h-screen content-center grid grid-cols-1 gap-10 place-content-center">
<div>
<h1 class="text-slate-100">Login Form</h1>
</div>
<form action="auth" method="POST">
<div>
<input class="" type="text" name="username" placeholder="Username" required>
</div>
<div>
<input type="password" name="password" placeholder="Password" required>
</div>
<div>
<input class="px-4 py-4 rounded-full text-slate-100 border-slate-50 border-4 hover:border-none hover:bg-slate-900" type="submit">
</form>
</div>
</div>
</body>
</html>