-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
350 lines (312 loc) · 20.4 KB
/
index.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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="css/campusEvent.css">
<link rel="stylesheet" href="css/navBar.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/Support.css">
<link rel="stylesheet" href="css/Calender.css">
<link rel="stylesheet" href="css/ClubActivity.css">
<title>CUNY Homepage</title>
<script src="https://www.gstatic.com/firebasejs/8.10.0/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/10.13/firebase-app-compat.js"></script>
<script src="https://www.gstatic.com/firebasejs/10.13/firebase-firestore-compat.js"></script>
<script src="https://www.gstatic.com/firebasejs/10.13/firebase-installations-compat.js"></script>
<script src="https://www.gstatic.com/firebasejs/10.13/firebase-storage-compat.js"></script>
<script src="https://www.gstatic.com/firebasejs/10.13/firebase-database-compat.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.10.0/firebase-auth.js"></script>
<script>
const firebaseConfig = {
apiKey: "AIzaSyDdSevJ5ZmYWDu5pkccpEFWjRyTnDv3blM",
authDomain: "ctphackathon-cunynews.firebaseapp.com",
databaseURL: "https://ctphackathon-cunynews-default-rtdb.firebaseio.com",
projectId: "ctphackathon-cunynews",
storageBucket: "ctphackathon-cunynews.appspot.com",
messagingSenderId: "183597557455",
appId: "1:183597557455:web:2d1f962e30d6dfc54f39ba",
measurementId: "G-L14QF14BH4"
};
</script>
</head>
<body>
<div class="modal fade" id="EventModal" tabindex="-1" role="dialog" aria-labelledby="EventModal" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered modal-dialog modal-lg" style="min-width:90%;" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Event Details</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<div class="card mb-3" style="max-width: 100%; margin:2%;">
<div class="row g-0">
<div class="col-md-4">
<img src="img/Event1.png" alt="" class="img-fluid rounded-start">
</div>
<div class="col-md-8">
<div class="card-body">
<h5 class="card-title">Talk the Talk: Success through Classroom Participation</h5>
<div class="card-text"><p>All students are encouraged to join Baruch's Tools for Clear Speech program (TfCS) as we explore how effective communication can lead to a deeper understanding of course material, help foster new friendships with classmates, and of course, help you earn better grades! We’ll also discuss how strategic group communication skills can enhance career opportunities. At the end of the session, we will show how multilingual learners of English can take advantage of free TfCS services to improve their communication skills, speaking confidence, and career readiness.</p></div>
<p class="card-text text-muted">Thu Aug 29 2024 | 12:30PM – 2:00PM</p>
<p class="card-text text-muted">BAR01 - B-14-240</p>
</div>
</div>
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Add to my Calender</button>
</div>
</div>
</div>
</div>
<div class="cuny" id="CUNYPAGE">
<div class="nav">
<img src="CUNY-LOGO.svg.png" alt="Baruch college logo" class="baruchlogo bg-white w-10">
</div>
<div class="mx-auto container colleges">
<div class="row">
<a class="Baruch Campus w-100" id="BARUCH" onclick="goToCampus('Baruch');">
<div class="collegeName">
<p>Baruch College</p>
</div>
</a>
</div>
<div class="row">
<a class="JohnJay Campus w-100" id="JOHNJAY" onclick="goToCampus('JohnJay')">
<div class="collegeName">
<p>John Jay College</p>
</div>
</a>
</div>
<div class="row">
<a class="York Campus w-100" id="YORK" onclick="goToCampus('York')">
<div class="collegeName">
<p>York College</p>
</div>
</a>
</div>
</div>
</div>
<div class="hide" id="CAMPUSPAGE">
<div class="nav" id="nav">
<img src="img/BaruchLogo.png" alt="College logo" class="logo" id="CampusLogo" style="clear:left;">
<ul>
<li><a onclick="BackToCuny()">Cuny</a></li>
<li><a onclick="ShowCampusEvent()">Campus Events</a></li>
<li><a onclick="ShowClubActivity()">Club Activities</a></li>
<li><a onclick="ShowSupport()">Supports</a></li>
<li><a onclick="ShowMyCalender()">My Calendar</a></li>
<li><a onclick="Login()">Login</a></li>
</ul>
</div>
<div class="event" id="CampusEvent">
<div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="2"></li>
</ol>
<div class="carousel-inner" onload="">
</div>
<a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<div class="otherEvent">
<div class="card mb-3" style="max-width: 100%; margin:2%;">
<div class="row g-0">
<div class="col-md-4">
<img src="img/Event1.png" alt="" class="img-fluid rounded-start">
</div>
<div class="col-md-8">
<div class="card-body">
<h5 class="card-title">Talk the Talk: Success through Classroom Participation</h5>
<div class="card-text CardDiscription"><p>All students are encouraged to join Baruch's Tools for Clear Speech program (TfCS) as we explore how effective communication can lead to a deeper understanding of course material, help foster new friendships with classmates, and of course, help you earn better grades! We’ll also discuss how strategic group communication skills can enhance career opportunities. At the end of the session, we will show how multilingual learners of English can take advantage of free TfCS services to improve their communication skills, speaking confidence, and career readiness.</p></div>
<p class="card-text text-muted">Thu Aug 29 2024 | 12:30PM – 2:00PM</p>
<p class="card-text text-muted">BAR01 - B-14-240</p>
<button data-toggle="modal" data-target="#EventModal" class="btn btn-dark">Learn More</button>
</div>
</div>
</div>
</div>
<div class="card mb-3" style="max-width: 100%; margin:2%;">
<div class="row g-0">
<div class="col-md-4">
<img src="img/Event1.png" alt="" class="img-fluid rounded-start">
</div>
<div class="col-md-8">
<div class="card-body">
<h5 class="card-title">Talk the Talk: Success through Classroom Participation</h5>
<div class="card-text CardDiscription"><p>All students are encouraged to join Baruch's Tools for Clear Speech program (TfCS) as we explore how effective communication can lead to a deeper understanding of course material, help foster new friendships with classmates, and of course, help you earn better grades! We’ll also discuss how strategic group communication skills can enhance career opportunities. At the end of the session, we will show how multilingual learners of English can take advantage of free TfCS services to improve their communication skills, speaking confidence, and career readiness.</p></div>
<p class="card-text text-muted">Thu Aug 29 2024 | 12:30PM – 2:00PM</p>
<p class="card-text text-muted">BAR01 - B-14-240</p>
<button data-toggle="modal" data-target="#EventModal" class="btn btn-dark">Learn More</button>
</div>
</div>
</div>
</div>
<div class="card mb-3" style="max-width: 100%; margin:2%;">
<div class="row g-0">
<div class="col-md-4">
<img src="img/Event1.png" alt="" class="img-fluid rounded-start">
</div>
<div class="col-md-8">
<div class="card-body">
<h5 class="card-title">Talk the Talk: Success through Classroom Participation</h5>
<div class="card-text CardDiscription"><p>All students are encouraged to join Baruch's Tools for Clear Speech program (TfCS) as we explore how effective communication can lead to a deeper understanding of course material, help foster new friendships with classmates, and of course, help you earn better grades! We’ll also discuss how strategic group communication skills can enhance career opportunities. At the end of the session, we will show how multilingual learners of English can take advantage of free TfCS services to improve their communication skills, speaking confidence, and career readiness.</p></div>
<p class="card-text text-muted">Thu Aug 29 2024 | 12:30PM – 2:00PM</p>
<p class="card-text text-muted">BAR01 - B-14-240</p>
<button data-toggle="modal" data-target="#EventModal" class="btn btn-dark">Learn More</button>
</div>
</div>
</div>
</div>
</div>
<div class="sideEvent">
<div class="card">
<div class="card-header">What's New: </div>
<div class="card-body">
<ul class="list-group list-group-flush ">
<li class="list-group-item"><a href="">Don't forget to do your 2025 FAFSA!</a></li>
<li class="list-group-item"><a href="">Fall Semester Begin 8/28!</a></li>
<li class="list-group-item"><a href="">Student Government just opened application for Leadership Position!</a></li>
<li class="list-group-item"><a href="">Baruch Book Store reopen!</a></li>
<li class="list-group-item"><a href="">Badminton court is reopening!</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="hide" id="SUPPORT">
<div class="body">
<div class="row--cards">
<div class="col card">
<h2>Wirting Center</h2>
<div class="events row">
<div class="col">
<p class="description">A 50-minutes, one-to-one consulation for students that need help outside of their writing classes. Available in person appoinment on site and online appointment by zoom.</p>
<p class="location">Location: NVC 8-185</p>
<button class="btn btn-dark"><a href="https://bc.mywconline.com" target="_blank">Schedule an Appointment</a></button>
</div>
<div class="col dates">
<div class="row-date">8/28: Fall semester begins</div>
<div class="row-date">8/28: How to Survive College Wirting (In-person)</div>
<div class="row-date">8/30: Wirting Center Closed</div>
</div>
</div>
</div>
</div>
<div class="row--cards">
<div class="col card">
<h2>Tutoring Center</h2>
<div class="events row">
<div class="col">
<p class="description">Extra help outside of the classrooms that provided to students who are stuck on a subject. The tutors are students who had excelled in the subjects that they provide help in. It is available in person and online.</p>
<p class="location">Location: NVC 2-116</p>
<button class="btn btn-dark"><a href="https://sacc.baruch.cuny.edu/appointments/" target="_blank">Schedule an Appointment</a></button>
</div>
<div class="col dates">
<div class="row-date">Final Exam Reviews</div>
<div class="row-date">Weekly Workshops</div>
</div>
</div>
</div>
</div>
<div class="row--cards">
<div class="col card">
<h2>Career Center</h2>
<div class="events row">
<div class="col">
<p class="description">Supports students with career goals, resume reviews, mock interviews and etc. Aside from these, there are also career counseling avaiavle to assist with major selection, job and internship search and other issues with career process.</p>
<p class="location">Location: NVC</p>
<button class="btn btn-dark"><a href="https://studentaffairs.baruch.cuny.edu/starr-career-development-center/welcome-students/" target="_blank">Schedule an Appointment</a></button>
</div>
<div class="col dates">
<div class="row-date">8/7: OCR Workshop</div>
<div class="row-date">8/20: The Definitive LinkedIn Bootcamp</div>
<div class="row-date">8/22: Club Co-Starr Orientation</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="hide" id="CALENDER">
<div class="Calenderbody">
<div class="calendar">
<h2>August</h2>
<div id="calendar" class="days-container"></div>
</div>
</div>
</div>
<div class="hide" id="CLUBACTIVITY">
<div class="body">
<div class="clubEvent">
<div class="eventPoster">
<img src="img/hackatonEvent.png" alt="EventImage">
</div>
<div class="eventInfo">
<div class="EventTitle"> Hackathon Weekend </div>
<div class="EventDescription"> Computer Science Club presents a 48-hour coding marathon where students collaborate in teams to create innovative tech solutions. Participants can work on projects ranging from web apps to mobile games. The event typically includes workshops, mentorship from industry professionals, and prizes for the best projects. It's a great way to apply coding skills in a competitive and fun environment. </div>
<button class= "button" type="button">Add to Calender</button>
</div>
</div>
<div class="clubEvent">
<div class="eventPoster">
<img src="img/animeClub.png" alt="EventImage">
</div>
<div class="eventInfo">
<div class="EventTitle">Anime Marathon Night </div>
<div class="EventDescription"> Anime Club is holding a fun, social event where club members gather to watch a selection of anime series or movies. The marathon might be themed around a specific genre, like fantasy or mecha, or feature a popular series. Snacks and refreshments are usually provided, and there might be discussions or trivia games during breaks.</div>
<button class= "button" type="button">Add to Calender</button>
</div>
</div>
<div class="clubEvent">
<div class="eventPoster">
<img src="img/foodevent.png" alt="EventImage">
</div>
<div class="eventInfo">
<div class="EventTitle">International Food Festival </div>
<div class="EventDescription"> A vibrant event organized by the Cultural Club where students from diverse backgrounds share traditional dishes from their home countries. The festival includes food tasting, cultural performances, and showcases of traditional clothing and music. It’s a great opportunity for students to experience different cultures, try new foods, and celebrate diversity on campus.</div>
<button class= "button" type="button">Add to Calender</button>
</div>
</div>
<div class="clubEvent">
<div class="eventPoster">
<img src="img/cleanup.png" alt="EventImage">
</div>
<div class="eventInfo">
<div class="EventTitle">Campus Clean-Up Day</div>
<div class="EventDescription"> An event where members of the Environmental Club come together to clean up the campus or nearby community areas. Participants pick up litter, plant trees, and engage in activities that promote sustainability. The event often includes educational sessions on recycling, composting, and reducing waste, aiming to raise awareness about environmental issues.</div>
<button class= "button" type="button">Add to Calender</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
<script src="./js/MainPage.js"></script>
<script src="./js/Nav.js"></script>
<script src="./js/CampusEvent.js"></script>\
<script src="./js/Calender.js"></script>
<script src="./js/Login.js"></script>
</body>
</html>