-
Notifications
You must be signed in to change notification settings - Fork 0
/
Staffregistration.html
24 lines (22 loc) · 1.42 KB
/
Staffregistration.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>Staff Registration</title>
<link rel="stylesheet" type="text/css" href="static/registration.css">
</head>
<body>
<form action="Staffregistration.php" method="POST">
<div class="container">
<h1>Staff Registration</h1>
Enter First Name: <input type="text" name="FirstName" required="required" placeholder="Enter First name" /> <br/><br/>
Enter Last Name: <input type="text" name="LastName" required="required" placeholder="Enter Last name" /> <br/><br/>
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 Designation: <input type="text" name="Designation" placeholder="Enter Designation" /> <br/><br/>
Enter StaffID: <input type="text" name="StaffID" required="required" placeholder="Enter Staff-ID" /> <br/><br/>
Enter Contact: <input type="text" name="Contact" placeholder="Enter Contact (10 digit number)" /> <br/><br/>
Enter Blood Group: <input type="text" name="BloodGroup" required="required" placeholder="Enter Blood group(A+/A-/B+/B-/O+/O-/AB+/AB-)" /><br/><br/>
<button type="submit" value="Register"/>Register</button>
</div>
</form>
</body>
</html>