mirror of
https://github.com/GCMatters/hermes.git
synced 2026-02-04 05:30:13 +01:00
18 lines
495 B
HTML
18 lines
495 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>Login</title>
|
|
<script src="/js/login.js" defer></script>
|
|
</head>
|
|
<body>
|
|
<h2>Login</h2>
|
|
<form id="loginForm">
|
|
<label>Email: <input type="email" id="email" required /></label><br /><br />
|
|
<label>Password: <input type="password" id="password" required /></label><br /><br />
|
|
<button type="submit">Login</button>
|
|
<p id="message" style="color: red;"></p>
|
|
</form>
|
|
</body>
|
|
</html>
|