-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAdmission.html
More file actions
23 lines (23 loc) · 951 Bytes
/
Admission.html
File metadata and controls
23 lines (23 loc) · 951 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
<title>Admission Form</title>
<link rel="stylesheet" type="text/css" href="Admission.css">
<script type="text/javascript" src="admission.js"></script>
</head>
<body>
<div class="box">
<h3>Admission form</h3>
<form >
<input type="name" id="name" name="student" placeholder="Student name" required="" >
<input type="name" id="gender" name="gender" placeholder="Gender" required="">
<input type="email" id="email" name="mail" placeholder="Email" required="" >
<input type="number" id="number" name="phone" placeholder="Phone" required="" maxlength='10' >
<input type="name" id="address" name="address" placeholder="City" required="">
<input type="password" id="pass1" name="pass" placeholder="Password" required="" >
<input type="password" id="pass2" name="pass2" placeholder="Re-enter password" required="" >
<input type="Submit" name="submit" onclick="msg1();msg2()">
</form>
</div>
</body>
</html>