-
Notifications
You must be signed in to change notification settings - Fork 433
/
Registration Portal.html
142 lines (133 loc) · 5.81 KB
/
Registration Portal.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Registration Portal|Department of Computer Science</title>
<link rel="shortcut icon" href="/img/th.ico">
<link rel="stylesheet" href="pane.css">
<script src="https://kit.fontawesome.com/ac3bca20a4.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="top">
<div class="left">
<img class="dept-logo" src="/img/comScience_logo.png" alt="logo">
</div>
<div class="middle"></div>
<div class="navbar" id="quick-access">
<a class="home" href="/Home.html" ><i class="fa fa-fw fa-home">
</i>Home</a>
<a class="about" href="/About.html"><i class="fa fa-fw fa-files-o">
</i>About</a>
<a class="research" href="/Research.html"><i class="fa fa-fw fa-newspaper-o">
</i>Research</a>
<a class="faculty" href="/Faculty.html"><i class="fa fa-fw fa-landmark-dome">
</i>Faculty</a>
<a class="icon" href="javascript:void(0)" onclick="navResponsive()">
<i class="fa fa-bars">
</i></a>
</div>
</div>
<hr>
<div>
<h1 class>REGISTRATION</h1>
<p class="details">Welcome to the registration portal, register for short courses,upcoming events and internship programs.
Join us to receive world-quality education, participate in events and apply for internship opportunities. <br><br> <b>Select an option to register
and fill the forms below.</b>
</p>
</div>
<h1 class="sh">Short Courses</h1>
<input type="checkbox" id="short-courses" name="Short courses" value="CCNA">
<label for="short-courses"> CCNA</label><br>
<input type="checkbox" id="short-courses" name="short-courses" value="Cybersecurity">
<label for="short-courses"> Cybersecurity and Privacy</label><br>
<input type="checkbox" id="short-courses" name="short-courses" value="Human-Computer Interaction">
<label for="Human-Computer Interaction"> Human-Computer Interaction</label><br>
<br><br>
<h3>Complete the form below</h3>
<form action="/Home.html">
<label for="fname">First name: </label>
<input type="text" id="fname" name="fname"><br>
<label for="lname">Last name: </label>
<input type="text" id="lname" name="lname"><br>
<label class="text" for="email">E-mail:</label>
<input class="bar" type="email" id="email" name="email"><br> <br>
<input class="sub" type="submit" value="Submit">
<h1 class="sh">Events</h1>
<input type="checkbox" id="events" name="events" value="AI Seminar">
<label for="events"> AI Seminar</label><br>
<input type="checkbox" id="events" name="events" value="Hackathon">
<label for="events"> Hackathon<br>
<h3>Complete the form below </h3>
<form action="/Home.html">
<label for="fname">First name: </label>
<input type="text" id="fname" name="fname"><br>
<label for="lname">Last name: </label>
<input type="text" id="lname" name="lname"><br>
<label class="text" for="email">E-mail:</label>
<input class="bar" type="email" id="email" name="email"><br> <br>
<input class="sub" type="submit" value="Submit">
<h1 class="sh">Internship Program</h1>
<h3>Complete the form below </h3>
<form action="/Home.html">
<label for="fname">First name: </label>
<input type="text" id="fname" name="fname"><br>
<label for="lname">Last name: </label>
<input type="text" id="lname" name="lname"><br>
<label class="text" for="email">E-mail:</label>
<input class="bar" type="email" id="email" name="email"><br> <br>
<input class="sub" type="submit" value="Submit"> <br><br>
<div class="links">
<h2> Links to</h2>
<ul class="lnks">
<li><a href="/Courses.html">
Courses
</li></a>
<li><a href="/Research.html">
Research
</li></a>
<li><a href="/News.html">
Tech News
</li></a>
<li><a href="/Faculty.html">
Faculty
</li></a>
<li><a href="/FAQs.html">
FAQs
</li></a>
<li><a href="/Registration Portal.html">
Registration Portal
</li></a>
<li><a href="/About.html">
About
</li></a>
<li><a href="/Events.html">
Events
</li></a>
<li><a href="/Contact Us.html ">
Contact Us
</li></a>
</div>
<div class="con">
<ul class="reach">
<li>Contact us on:</li>
<li>Phone&Email</li>
<li>E-mail:[email protected]</li>
<li>Phone:+233 501 382 035/+233 559 145 698</li>
</ul>
<div class="loc">
<ul class="reach">
<li>Location:</li>
<li>Opposite the Mathematics Department</li>
<li>University of Ghana Campus,Legon</li>
</ul>
<b class="enq">For further enquiries and to stay updated enter your E-mail below</b>
<form class="form" action="/Home.html">
<label class="txt" for="email">Enter your email:</label>
<input class="box" type="email" id="email" name="email">
<input class="sum" type="submit">
</form>
</div>
</div>
</body>
</html>