forked from dugsiiyeinc/HealthIntern-Manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (30 loc) · 1.3 KB
/
index.html
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
29
30
31
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>HealthIntern Manager - Login & Register</title>
<link rel="stylesheet" href="./css/style.css" />
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11.14.5/dist/sweetalert2.all.min.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/sweetalert2@11.14.5/dist/sweetalert2.min.css">
</head>
<body>
<div class="layout">
<div class="auth-container">
<h1 id="form-title">Sign In</h1>
<form id="authForm">
<input type="text" id="username" placeholder="Enter your username" style="display: none;" />
<input type="email" id="email" placeholder="Enter your email" required />
<input type="password" id="password" placeholder="Enter your password" required />
<input type="password" id="confirmPassword" placeholder="Confirm your password" style="display: none" />
<button type="submit" id="authButton">Sign In</button>
</form>
<span id="errorMessage" class="error-message"></span>
<p id="authSwitch">
Don't have an account? <a href="#" id="switchForm">Sign up</a>
</p>
</div>
</div>
<script src="./js/auth.js"></script>
</body>
</html>