Adicionar web/login.html

This commit is contained in:
2026-08-19 21:10:31 -03:00
parent 941be709b4
commit 1c00653eaa
+19
View File
@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Login</title>
<link rel="stylesheet" href="login.css">
</head>
<body class="dark">
<h1>Safira Login</h1>
<form action="/auth/login" method="POST">
<input name="email" type="email" placeholder="Email">
<input name="password" type="password" placeholder="Password">
<button type="submit">Login</button>
</form>
</body>
</html>