-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.php
211 lines (181 loc) · 6.75 KB
/
home.php
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
210
211
<?php
include 'header.php'
?>
<div class="content">
<!-- Welcome Page -->
<div class="welcome wrap-width">
<div class="empty-layout"></div>
<center>
<div class="welcome-text">
<p id="text-heading">K.J. Somaiya</p><br>
<p id="text-context">Somaiya Pacement Portal is a platform for students where can apply for<br>Companies,get the documents posted by TPO,<br> can interact with students and companies plus they can post their problem </p>
<a id="readmore" href="aboutus.php">Read More</a>
</div> <!-- welcome-text -->
</center>
</div> <!-- welcome -->
<div class="link-container clearfix">
<div class="wrap-width">
<a id="register">Sign Up Now</a>
<p id="join">Join - Be a part of our community.</p>
</div>
</div> <!-- link-container -->
<div class="about-container clearfix wrap-width" id="about">
<p id="title">Everything you need to know about us.</p><hr class="style-1" style="width: 600px; align-self: center;"><br/>
<div class="col-container">
<span class="text-back tooltip" onclick="slider()"></span>
<i class="material-icons arrow arrow-back">navigate_before</i>
<img id="about-img" src="images/we.png"/>
<div class="col_one_third col_1st">
<h1>WHO ARE <span>WE</span>.</h1>
<div class="bottom-border"></div>
<p>We are a group of highly motivated students and we are trying to solve the daily life problems of students which hinder them to be successful in their lives. </p>
</div> <!-- col_one_third -->
<div class="col_one_third col_2nd">
<h1>OUR <span>MISSION</span>.</h1>
<div class="bottom-border"></div> <!-- border-bottom -->
<p>We aim to promote the digital document attestation and verification. Our sole mission is to save the time that the students consume in attesting their docs.</p>
</div> <!-- col_one_third -->
<div class="col_one_third col_3rd">
<h1>WHAT WE <span>PROVIDE</span>.</h1>
<div class="bottom-border"></div> <!-- border-bottm -->
<p>This is a platform where students can get their documents verified and attested digitally. Companies can view their docs and offer them internships and jobs.</p>
</div> <!-- col_one_third col_last -->
<i class="material-icons arrow arrow-forward">navigate_next</i>
<span class="text-forward tooltip"></span>
</div> <!-- col-conatiner -->
</div> <!-- About-container -->
<script>
var slide = 1;
var myVar = setInterval(slider, 4000);
$(".col_one_third").hover(function(ev){
clearInterval(myVar);
}, function(ev){
myVar = setInterval(slider,4000);
});
function slider(){
slide+=1;
if(slide>3){
slide = 1;
}
$(".col_one_third").css("animation","fadeInRight 0.6s ease-out");
$("#about-img").css("animation","fadeInLeft 0.4s ease-out");
move();
}
</script>
<script>
function move(){
if (slide ==1){
$(".radio-1").html("radio_button_checked");
$(".radio-2").html("radio_button_unchecked");
$(".radio-3").html("radio_button_unchecked");
$(".col_1st").show();
$(".col_2nd").hide();
$(".col_3rd").hide();
$("#about-img").prop("src","images/we.png");
$(".text-back").text("What we provide");
$(".text-forward").text("Our mission");
}
else if (slide==2){
$(".radio-1").html("radio_button_unchecked");
$(".radio-2").html("radio_button_checked");
$(".radio-3").html("radio_button_unchecked");
$(".col_1st").hide();
$(".col_2nd").show();
$(".col_3rd").hide();
$("#about-img").prop("src","images/mission.png");
$(".text-back").text("Who are we");
$(".text-forward").text("What we provide");
}
else if (slide==3){
$(".radio-1").html("radio_button_unchecked");
$(".radio-2").html("radio_button_unchecked");
$(".radio-3").html("radio_button_checked");
$(".col_1st").hide();
$(".col_2nd").hide();
$(".col_3rd").show();
$("#about-img").prop("src","images/provide.png");
$(".text-back").text("Our mission");
$(".text-forward").text("Who are we");
}
}
</script>
<center>
<i class="material-icons radio-1">radio_button_checked</i>
<i class="material-icons radio-2">radio_button_unchecked</i>
<i class="material-icons radio-3">radio_button_unchecked</i>
</center>
<center>
<div class="contact-container " id="contact">
<div id="form-main">
<div class="contact-div form-div">
<p class="contact-title" id="title">Contact us<br></p>
<form class="form" id="form1" name="form1" action="#" method="post">
<p class="name">
<input type="text" pattern="^[a-zA-Z ]+$" class="feedback-input" maxlength="35" placeholder="Your Name" id="name" name="name" required/>
</p>
<p class="email">
<input type="email" class="feedback-input" id="email" name="email" placeholder="Your Email" required/>
</p>
<p class="text">
<textarea class="feedback-input" id="message" name="message" placeholder="Message" required></textarea>
</p>
<div class="submit">
<input type="submit" value="SEND" id="button-send"/>
<div class="ease"></div>
</div>
</form>
<script>
$(function() {
$("form[name='form1']").validate({
rules: {
name: {
required: true,
maxlength: 35
},
email: {
required: true,
email: true
},
message: {
required: true,
minlength: 20,
maxlength:250
}
},
messages: {
name: {
required: "enter your good name",
maxlength: "35"
},
email: "Please enter an email address",
email: "enter valid email"
},
});
});
</script>
</div>
<div class="contact-div contact-detail">
<p class="contact-title" id="ct-details">Contact Details</p>
<div class="detail-container" id="phone-no">
<i class="material-icons first">contact_phone</i>
<p class="contact-context" id="phone-text">7045327591</p>
</div>
<div class="detail-container" id="email-id">
<i class="material-icons second">email</i>
<p class="contact-context" id="mail-text">[email protected]</p>
</div>
</div>
</center>
</div>
<footer>
<a href="#home"><i class="fa fa-arrow-circle-up" aria-hidden="true"></i></a>
<div id="copyrights">
<span class="siteName"> Somaiya © 2019. All rights reserved.</span>
</div><!--copyrights-->
</footer>
</script>
<script defer src="https://cdn.jsdelivr.net/jquery.validation/1.15.1/jquery.validate.min.js"></script>
<script defer type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/jquery-validate/1.12.0/additional-methods.js"></script>
<script defer src="js/animate.js"></script>
</body>
</html>