-
Notifications
You must be signed in to change notification settings - Fork 0
/
admission.html
54 lines (53 loc) · 2.56 KB
/
admission.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
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<title>Admission | School</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="icon" href="images/logo.jpg">
<script src="script.js"></script>
</head>
<body>
<header>
<nav>
<a href="index.html">Home</a>
<a href="admission.html">Admission</a>
<a href="results.html">Results</a>
<a href="gallery.html">Gallery</a>
<a href="events.html">Events</a>
</nav>
</header>
<main>
<div class="col-left">
<form method="post" action="adm.php" name="addForm" onsubmit="return validate()">
<h1>Admission Form</h1>
<h3>_-_-_-_-_-_-_-_-_-_-_-_-_-_Personal details_-_-_-_-_-_-_-_-_-_-_-_-_-_</h3>
<input type="text" name="firstname" placeholder="First Name">
<input type="text" name="lastname" placeholder="Last Name">
<input type="text" name="fathername" placeholder="Father Name">
<input type="text" name="mothername" placeholder="Mother Name">
<input type="number" name="class" placeholder="Class">
<input type="date" name="birth" placeholder="Date of Birth">
<input type="file" name="photo" alt="Photo">
<input type="file" name="sign" alt="Signature">
<h3>_-_-_-_-_-_-_-_-_-_-_-_-_-_Contact details_-_-_-_-_-_-_-_-_-_-_-_-_-_</h3>
<input type="number" name="phone" placeholder="Phone no.">
<input type="email" name="email" placeholder="E-Mail">
<input type="text" name="address" placeholder="Address">
<button style="width: 410px; height: 36px; border: 2px solid green; border-radius: 4px; font-size: 25px;" type="submit" name="submit">Submit</button>
</form>
<table>
<tr><br><br><br></tr>
</table>
</div>
<div class="col-right sidenav">
<a href="sub-pages/princis_desk.html">Principal's Desk</a>
<a href="sub-pages/syllabus.html">Syllabus</a>
<a href="sub-pages/staff_info.html">Faculty</a>
<a href="sub-pages/achievements.html">Achievements</a>
</div>
</main>
<footer>
<p>©<a href="#"> SCHOOL 2017 - ∞</a></p>
</footer>
</body>
</html>