26 lines
623 B
PHP
26 lines
623 B
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Daily Goals - Login</title>
|
|
</head>
|
|
<body>
|
|
<h1>Login</h1>
|
|
<form id="login-form">
|
|
<label>Email
|
|
<input type="email" id="email" name="email" required />
|
|
</label>
|
|
<label>Password
|
|
<input
|
|
type="password"
|
|
id="password"
|
|
name="password"
|
|
required
|
|
/>
|
|
</label>
|
|
<button type="submit">Login</button>
|
|
</form>
|
|
<p id="login-error" hidden></p>
|
|
<p><a href="/register">Register</a></p>
|
|
<script src="/js/auth.js"></script>
|
|
</body>
|
|
</html>
|