-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmsbteNewigator.html
More file actions
34 lines (33 loc) · 1.35 KB
/
Copy pathmsbteNewigator.html
File metadata and controls
34 lines (33 loc) · 1.35 KB
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
32
33
34
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MSbte Newigator - Sign In/Sign Up</title>
</head>
<body>
<div class="container">
<div class="auth-form">
<h1 class="title">MSbte Newigator</h1>
<form class="sign-in-form">
<h2 class="form-title">Sign In</h2>
<input type="email" placeholder="Enter your email" required>
<input type="password" placeholder="Enter your password" required>
<button type="submit">Sign In</button>
<a href="#" class="forgot-password">Forgot Password?</a>
</form>
<form class="sign-up-form">
<h2 class="form-title">Sign Up</h2>
<input type="email" placeholder="Enter your email" required>
<input type="password" placeholder="Enter your password" required>
<input type="password" placeholder="Confirm your password" required>
<button type="submit">Sign Up</button>
</form>
<div class="toggle-form">
<p>Don't have an account? <a href="#">Sign Up</a></p>
<p>Already have an account? <a href="#">Sign In</a></p>
</div>
</div>
</div>
</body>
</html>