-
Notifications
You must be signed in to change notification settings - Fork 0
/
sig_in.html
209 lines (140 loc) · 7.32 KB
/
sig_in.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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>High Skills Grading System</title>
<link href="bootstrap/css/bootstrap.css" rel="stylesheet">
<link href="fa/css/all.min.css" rel="stylesheet">
<style>
`
.logo{
width: 30%;
}
.navi{
width:70%;
}
a{
color: white !important;
}
a:hover{
font-size: 15px;
color: lightgreen !important;
}
.background{
background-image: url('images/skill.jpg');
height: 700px;
background-size: cover;
}
.overlay{
background-color: rgba(0,0,0,0.8);
height: 700px;
width: 100%;
color: white !important;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
border-radius: 20px;
}
.text{
background-color: rgba(0,0,200,0.3);
min-height: 150px;
width: 50%;
padding: 20px;
border-radius: 20px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
</style>
</head>
<body>
<div class="container-fluid" style="background-color: darkblue !important;">
<div class="container">
<div class="row">
<div class="col-md">
<nav class="navbar navbar-expand-lg">
<div class="container-fluid">
<a class="navbar-brand logo " href="#">
<img src="images/logo.png" alt="Logo Picture" width="30%">
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse navi" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0" style="display: flex; width: 100%; justify-content: flex-end;">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Services</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Explore Department</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">About Us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Contact Us</a>
</li>
<button class="btn btn-success btn-sm btn-outline-success">
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Browse Skills
</a>
<ul class="dropdown-menu bg-black">
<li><a class="dropdown-item" href="#">Photography Skills</a></li>
<li><a class="dropdown-item" href="#">Tech Skills</a></li>
<li><a class="dropdown-item" href="#">Data Analysis Skills</a></li>
<li><a class="dropdown-item" href="#">Digital Skills</a></li>
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item" href="#">See More</a></li>
</ul>
</li>
</button>
</ul>
</div>
</div>
</nav>
</div>
</div>
</div>
</div>
<div class="container-fluid">
<div class="row">
<div class="col-md background">
<div class="overlay">
<div class="text">
<div>
<form action="result.html" method="post">
<div class="form-control bg-success form-control-lg">
<input type="text" id="username" name="username" placeholder="type full-name here" />
<br> <br>
<div style="display: flex; align-items: center; justify-content: center;">
<select id="sex">
<option>Gender</option>
<option value="m">Male</option>
<option value="f">Female</option>
</select>
<br>
<button type="button" class="mx-4 btn btn-warning btn-sm" onclick="load()">Check Eligibility</button>
</div>
</div>
<br>
<div style="display: flex; align-items: center; justify-content: center;">
<button class="btn btn-success btn-outline-success text-light" id="bot" type="submit">Click To Check Result</button>
</div>
</form>
<br>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="main.js"> </script>
</body>
</html>