-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmission.html
94 lines (94 loc) · 4.79 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>admission for spleng</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="responsive.css">
<!-- Add this to the head section of your HTML files -->
<script src="https://www.gstatic.com/firebasejs/9.6.1/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/9.6.1/firebase-database.js"></script>
<script type="module">
import { initializeApp } from "https://www.gstatic.com/firebasejs/9.6.1/firebase-app.js";
import { getDatabase } from "https://www.gstatic.com/firebasejs/9.6.1/firebase-database.js";
</script>
</head>
<body>
<div class="admissions">
<h2 id="admissions">admission</h2>
<div class="transfers"></div>
<div class="logo-menu">
<img class="topimg" src="\images (2).jpeg" alt="">
<h1>spleng school</h1>
<button onclick="opennav()" class="openbarbtn" id="openbarbtn">☰</button>
</div>
<div class="navbar" id="navbar">
<span onclick="closenav()" class="closebarbtn">×</span>
<button><a href="/index.html">home</a></button>
<button onclick="scrolltoaboutus()">about us</button>
<button onclick="scrolltoprograms()">programs</button>
<button onclick="scrolltofacilities()">facilities</button>
<button onclick="scrolltoevents()">events</button>
<button><a href="admission.html">admission</a></button>
<button onclick="scrolltocontacts()">contact us</button>
</div> <br>
<div class="application">
<h2> APPLICATION AND JOINING PROCESS</h2>
<h3> ADMISSION PROCESS</h3>
<ul>
<li>Inquiry and Booking</li>
<li>Confirmation</li>
<li>Interviews and Assessment</li>
<li>Placement</li>
</ul>
<h4>ADMISSION REQUIREMENTS</h4>
<ul>
<li>Copy of Birth Certificate</li>
<li>2 Passport size Photos</li>
<li>Copy of Parent/Guardian National ID card or Passport</li>
<li>Portfolio with NEMIS Number and Academic Report</li>
</ul>
</div>
<div class="transferstudents" id="transferstudents">
<label style="margin:10px;" for="text">first name :</label> <br>
<input type="text" placeholder="first name" required> <br><br>
<label class="transferlabel" for="middle name">middle name:</label> <br>
<input type="text" placeholder="middle name" required> <br><br>
<label for="surname">surname:</label> <br>
<input type="text" placeholder="surname"> <br><br>
<label for="class">class interested in:</label> <br>
<select name="class" id="class-select" required>
<option value="" disabled selected>--select class--</option>
<option value="PLAYGROUP">PLAYGROUP</option>
<option value="PP1">PP1</option>
<option value="PP2">PP2</option>
<option value="GRADE 1">GRADE 1</option>
<option value="GRADE 2">GRADE 2</option>
<option value="GRADE 3">GRADE 3</option>
<option value="GRADE 4">GRADE 4</option>
<option value="GRADE 5">GRADE 5</option>
<option value="GRADE 6">GRADE 6</option>
<option value="GRADE 7">GRADE 7</option>
</select> <br><br>
<label for="student-age">students age:</label> <br>
<input type="date" name="student-age"> <br><br>
<label for="students-gender">students gender:</label> <br>
<select name="students-gender" id="students-gender">
<option value="null" disabled selected>--select-gender--</option>
<option value="male">male</option>
<option value="female">female</option>
</select> <br><br>
<label for="parents-name">parents name:</label> <br>
<input type="text" id="parents-name" placeholder="parents full name" required> <br><br>
<label for="parents-number">parent's contact:</label> <br>
<input type="number" placeholder="phone number" id="parents-phonenumber" required> <br><br>
<label for="parents email">parents email:</label> <br>
<input type="text" placeholder="[email protected]" id="parents-email"> <br><br>
<label for="anythingelse">anything else you would like us to know?</label> <br>
<input type="text" id="transfermessage" placeholder="message"> <br><br>
<button class="applicationsubmitbtn" id="applicationsubmitbtn" type="submit">submit application</button>
</div>
<script type="module" src="config.js"></script>
</body>
</html>