forked from ShreyasTheOne/CovEd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresForm.html
125 lines (102 loc) · 4.44 KB
/
resForm.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
<!DOCTYPE html>
<html>
<head>
<title>CovEd India | Resources</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="styles/nav.css" rel="stylesheet">
<link href="./styles/mSignUp.css" rel="stylesheet" type="text/css">
<link rel="shortcut icon" href="./assets/favicongolden-removebg.png">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="resources.js"></script>
<script>
function checkWhere(){
var x = window.location.href;
var y = x.split('/');
var z = y[y.length - 1];
if(z == "studentSignUp.html"){
document.getElementById("msiNavButton1").classList.add("active");
}else if(z == "mentorSignUp.html"){
document.getElementById("msiNavButton2").classList.add("active");
}else if(z == "resForm.html"){
document.getElementById("msiNavButton3").classList.add("active");
}
}
function autoScrolling() {
window.scrollTo(0,document.body.scrollHeight);
}
setInterval(
function(){
checkWhere();
}
,1000);
setTimeout(function(){
autoScrolling();
}, 2000);
</script>
<link rel="shortcut icon" href="./assets/favicongolden.png">
</head>
<body>
<!-- NAV BAR CODE STARTS -->
<div class="navContainerx" id="navContainerx">
<div class="navx">
<div class="navLogox">
<img src="./assets/favicongolden-removebg.png" alt="logo" id="covedIMG">
<div id="covedNAV">CovEd India</div>
</div>
<div class="navLinksx">
<a class="navLinkx" id="aboutusLink">About Us</a>
<a class="navLinkx" id="signupLink">Sign Up</a>
<a class="navLinkx" id="resourcesLink">Resources</a>
<a class="navLinkx" id="teamLink">Our Team</a>
<a class="navLinkx" id="faqLink">FAQ</a>
<a class="navLinkx" id="contactusLink">Contact Us</a>
<div id="nav-icon3">
<span class="s"></span>
<span class="s"></span>
<span class="s"></span>
<span class="s"></span>
</div>
</div>
</div>
</div>
<div id="sidenavx" class="sidenavx">
<a id="aboutusLinkS">About Us</a>
<a id="studentsLinkS">For Students</a>
<a id="mentorsLinkS">For Mentors</a>
<a id="resourcesLinkS">Resources</a>
<a id="teamLinkS">Our Team</a>
<a id="faqLinkS">FAQ</a>
<a id="contactusLinkS">Contact Us</a>
</div>
<!-- NAV BAR CODE ENDS -->
<div class="msiContainer">
<div class="lowNav">
<div class="msiNavBar">
<div id="msiNavButton1">
<a href="studentSignUp.html"><h2>Student</h2></a>
</div>
<div id="msiNavButton2">
<a href="mentorSignUp.html"><h2>Mentor</h2></a>
</div>
<div id="msiNavButton3">
<a href="resForm.html"><h2>Resources</h2></a>
</div>
</div>
<div class="resmsiNavBar">
<a href="studentSignUp.html"><h2>Are you a student? Tap me!</h2></a><br>
<a href="resForm.html"><h2>Do you want to be a mentor? Tap me!</h2></a>
</div>
</div>
<div class="msiHolder">
<br><br>
<h3>Resources</h3>
<br>
If you would like to add resources, please add them here.
<br><br>
</div>
</div>
<div class="respIframe">
<iframe src="https://docs.google.com/forms/d/e/1FAIpQLSdS_JL9AjOBkA8TwqKXEZrx2SrAD2vdCYyu_32eG-b66MXPtQ/viewform?embedded=true" class="msiIframe">Loading…</iframe>
</div>
</body>
</html>