-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSignUp.ejs
More file actions
28 lines (28 loc) · 988 Bytes
/
Copy pathSignUp.ejs
File metadata and controls
28 lines (28 loc) · 988 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login | Smart Queue Token System</title>
<link rel="stylesheet" href="/css/signin.css">
</head>
<body>
<div class="header">
<div class="header-title">Smart Queue</div>
<a class="home-btn" href="/">Home</a>
</div>
<div class="login-container">
<h2>Login</h2>
<form action="/auth/signin" method="POST">
<label for="login-email">Email</label>
<input type="email" id="login-email" name="email" required placeholder="Enter your email">
<label for="login-password">Password</label>
<input type="password" id="login-password" name="password" required placeholder="Enter your password">
<button type="submit">Login</button>
</form>
<div class="switch-link">
Don't have an account? <a href="/auth/signup">Sign Up</a>
</div>
</div>
</body>
</html>