forked from wegiveyoubrand/InstitutionPortal
-
Notifications
You must be signed in to change notification settings - Fork 1
/
aunthentication.html
134 lines (123 loc) · 4.15 KB
/
aunthentication.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- ===== EXTERNAL LINKS ===== -->
<!-- === MATERIAL ICONS === -->
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet"
/>
<!-- === GOOGLE FONTS === -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital@0;1&family=IBM+Plex+Sans+Condensed:ital@0;1&family=IBM+Plex+Sans:ital,wght@0,100;0,400;0,700;1,100;1,400;1,700&family=IBM+Plex+Serif:ital@0;1&display=swap"
rel="stylesheet"
/>
<!-- === FAVICON === -->
<link
rel="shortcut icon"
href="./public/images/favicon.ico"
type="image/x-icon"
/>
<!-- === SPREADSHEET === -->
<link rel="stylesheet" href="./src/css/main.css" />
<!-- ===== END OF EXTERNAL LINKS ===== -->
<title>Instituions Portal of Nigeria - (IPN)</title>
</head>
<body id="authenticationPage">
<div class="loader">
<img src="/public/images/loading.gif" alt="loading..." />
</div>
<!-- ===== HEADER ===== -->
<header>
<div class="brand">
<div class="brand__logo">
<i class="material-icons">home</i>
</div>
<div class="brand__name">
Institutions Portal <span> of Nigeira</span>
</div>
</div>
<div class="nav">
<ul class="menu">
<li>
<a href="/apps/JAMBCBTCenters.html"
><i class="material-icons">search</i></a
>
</li>
<li class="menu-item"><a href="">About us</a></li>
<li class="menu-item"><a href="">API for Developers</a></li>
<li class="menu-item">
<a href="/institutes/Universities.html">Rate your School</a>
</li>
<li class="menu-item"><a href="" class="active">Sign up</a></li>
</ul>
</div>
<div class="menu-toggle">
<i class="material-icons">menu</i>
</div>
</header>
<!-- ===== MAIN ===== -->
<main class="container">
<h2>Lets Personalize your choice for next time!</h2>
<!-- ===== INSTITUTIONS ===== -->
<div class="forms">
<div class="form-container">
<h3 class="form-title">Create an account</h3>
<form action="" class="form">
<div class="input-container">
<label for="">email</label><input type="text" />
</div>
<div class="input-container">
<label for="">phone number</label><input type="text" />
</div>
<button>Create account</button>
</form>
<a href="">or login instead</a>
</div>
</div>
</main>
<div class="search-function">
<i class="material-icons">search</i><span>search</span>
</div>
<!-- ===== FOOTER ===== -->
<footer>
<div class="wrapper">
<div class="cards">
<div class="">
<div class="div-title">
Social media
<a href="" class="">Facebook</a>
<a href="" class="">Instagram</a>
<a href="" class="">Twitter</a>
<a href="" class="">LinkedIn</a>
</div>
</div>
<div class="">
<div class="div-title">
Social media
<a href="" class="">Facebook</a>
<a href="" class="">Instagram</a>
<a href="" class="">Twitter</a>
<a href="" class="">LinkedIn</a>
</div>
</div>
<div class="">
<div class="div-title">
Social media
<a href="" class="">Facebook</a>
<a href="" class="">Instagram</a>
<a href="" class="">Twitter</a>
<a href="" class="">LinkedIn</a>
</div>
</div>
</div>
</div>
</footer>
<script src="./src/js/main.js" type="module" defer></script>
</body>
</html>