-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSignUp.html
44 lines (36 loc) · 1.69 KB
/
SignUp.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
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html>
<head>
<!-- <base href="https://mediconnect.com/signup"> -->
<title>MediConnect - Sign Up</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/SignUp.css">
</head>
<body>
<div class="signup-container">
<h1>MediConnect</h1>
<div class="signup-form">
<input id="name" type="text" placeholder="Name" required>
<input id="phone" type="tel" placeholder="Phone" required> <!-- New Phone input -->
<input id="email" type="email" placeholder="Email" required>
<input id="password" type="password" placeholder="Password" required>
<div class="user-type-container">
<input type="checkbox" id="user-type" name="user-type" value="owner">
<label for="user-type">Are you Shop Owner ?</label>
</div>
<!-- Hidden Shop Name -->
<div id="owner-input" style="display: none;">
<input type="text" placeholder="Shop Name" required>
</div>
<button id="submitbtn" type="submit">Sign Up</button>
<p>Already have an account? <a href="Login.html">Log in</a></p>
</div>
</div>
<script src="js/signup.js"></script>
</body>
</html>