-
Notifications
You must be signed in to change notification settings - Fork 0
/
Hospitalregistration.html
24 lines (21 loc) · 1.28 KB
/
Hospitalregistration.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
<html>
<head>
<title>Hospital Registration</title>
<link rel="stylesheet" type="text/css" href="static/registration.css">
</head>
<body>
<form action="Hospitalregistration.php" method="POST">
<div class="container">
<h1>Hospital Registration </h1>
Enter UHID: <input type="text" name="UHID" required="required" placeholder="Enter UHID" /> <br/><br/>
Enter password: <input type="password" name="password" required="required" placeholder="Enter password" /> <br/><br/>
Enter Name: <input type="text" name="Name" required="required" placeholder="Enter Name" /> <br/><br/>
Enter Address: <input type="text" name="Address" required="required" placeholder="Enter Address" /> <br/><br/>
Enter Contact: <input type="text" name="Contact1" required="required" placeholder="Enter Contact" /> <br/><br/>
<input type="text" name="Contact2" required="required" placeholder="Enter Contact" /> <br/><br/>
Enter Email: <input type="text" name="Email" required="required" placeholder="Enter valid email-ID" /> <br/><br/>
<button type="submit" value="Register"/>Register</button>
</div>
</form>
</body>
</html>