heroweb/herowebserver/heroweb/signup.html
2024-09-11 19:58:42 +03:00

16 lines
314 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Login</title>
</head>
<body>
<h2>Login with Email</h2>
<form method="post" action="/loginsubmit">
<label for="email">Email:</label>
<input type="email" name="email" required>
<button type="submit">Login</button>
</form>
</body>
</html>