forked from dwivediamann/MedxTech
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathregistration_Patient.html
More file actions
100 lines (91 loc) · 3.98 KB
/
registration_Patient.html
File metadata and controls
100 lines (91 loc) · 3.98 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name ="viewport" content="width=device-width, intial-scale=1.0">
<title> Register</title>
<link rel="stylesheet" href="css\form.css">
<link rel="stylesheet" href="css\style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
</head>
<body>
<header class="header">
<a href="#" class="logo"> <i class="fas fa-heartbeat"></i>MedXTech</a>
<nav class="navbar">
<a href="index.html">Home</a>
<a href="#Feedbacks">Feedbacks</a>
<a href="#Social works">Social works</a>
<a href="#Partners">Partners</a>
</nav>
<div id="menu-btn" class="fas fa-bars"></div>
</header>
<div class="form">
<h2>
Patient Signup
</h2>
<p>
It's free and always will be.
</p>
<form action="">
<div class="error-text">
Error
</div>
<div class="grid-details">
<div class="input">
<label>
First Name
</label>
<input type="text" name="fname" placeholder="First Name" required pattern="[a-zA-Z'-'\s]*">
</div>
<div class="input">
<label>
Last Name
</label>
<input type="text" name="lname" placeholder="Last Name" required pattern="[a-zA-Z'-'\s]*">
</div>
<div class="input">
<label>
Email
</label>
<input type="email" name="email" placeholder="Enter Your Email" required>
</div>
<div class="input">
<label>
Phone
</label>
<input type="phone" name="phone" placeholder="Phone Number" required pattern="[0-9]{10}" onilvalid="this.setCustomValidity('enter 10 Digit Number')" oninput="this.setCustomValidity('')">
</div>
<div class="input">
<label>
Password
</label>
<input type="password" name="pass" placeholder="Password" required>
</div>
<div class="input">
<label>
Confirm Password
</label>
<input type="password" name="cpass" placeholder="Confirm Password" required>
</div>
</div>
<div class="profile-img">
<div class="file-upload">
<input type="file" id="image-preview" name="image" class="file-input" required oninvalid="this.setCustomValidity('Select an Profile image')" oninput="this.setCustomValidity('')">
<i class="fas fa-user-edit"></i>
</div>
</div>
<div class="submit">
<input type="submit" value="Signup Now" class="button">
</div>
</form>
<div class="link">
Already Signup? <a href="Patient_Login.html">
Login Now
</a>
</div>
</div>
<script scr="js/register.js"></script>
</body>
</html>