-
Notifications
You must be signed in to change notification settings - Fork 0
/
career.html
150 lines (135 loc) · 4.33 KB
/
career.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
<!DOCTYPE html>
<html>
<head>
<title>Career plans</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel="stylesheet" type="text/css" href="main.css">
<script>
function off() {
document.getElementById("overlay").style.display = "none";
document.getElementById('signin').style.display= "block";
}
function on() {
document.getElementById("overlay").style.display = "block";
document.getElementById('signin').style.display= "none";
}
</script>
<script>
function validateForm()
{
var x = document.getElementById("name").value;
var y = document.getElementById("ok").value;
if (x == " ") {
alert("Name must be filled out");
}
else if (y == "B.Tech") {
window.location.href="b.tech.html";
}
else if (y == "12th") {
window.location.href="12th.html";
}
else if (y == "10th") {
window.location.href="10thpass.html";
}
else if (y == "startup") {
window.location.href="startup.html";
}
}
</script>
<style>
body{
background: url(http://sinhvu.com/wp-content/uploads/2017/12/web-design-2906159.jpg);
background-size: cover;
font-family: lato;
background-repeat: no-repeat;
}
html{
height: 100%;
}
#content
{
text-align: center;
padding: 14%;
}
h1{
color: white;
font-weight: 700;
font-size: 6em;
}
h5{
color: white;
font-size: 2em;
}
hr{
color:white;
width: 400px;
}
</style>
</head>
<body>
<nav class="navbar navbar-default">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">Career Plans</a>
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li class="active"><a href="About.html">About <span class="sr-only">(current)</span></a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="Register.php">Register</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="login.php">Sign In</a></li>
</ul>
</div>
</div>
</nav>
<div id="overlay" >
<div id="text"> <div class="contact-form">
<span onclick="off()" class="close" title="Close Modal">×</span>
<h2>Fill the Form</h2>
<input type="text" id="name" placeholder="Name" class="form-control" required>
<p></p>
<p></p>
<select class="form-control" id ="ok" name="quallificatation" >
<option value="">--Quallificatation--</option>\
<option value="startup" >Startup</option>
<option value="B.Tech">B.Tech</option>
<option value="12th" >12th pass</option>
<option value="10th" >10th pass</option>
</select>
<div id="div">
</div>
<br>
<center> <button class="btn btn-success" onclick="validateForm()">Let's Start</button> </center>
</div></div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-12">
<center>
<div id="content">
<h1>Career Plans</h1>
<h5>"Plan your future here"</h5>
<hr>
<center><button class="btn btn-default btn-lg" id="signin" onclick="on()">Let's Start</button></center>
</div>
</center>
</div>
</div>
</div>
<script type="text/javascript" scr="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"></script>
</body>
</html>