forked from theprince29/CSJMUconnect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommunity.html
257 lines (239 loc) · 14.5 KB
/
community.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description" content="" />
<meta name="author" content="" />
<title>Helpdesk</title>
<!-- Favicon-->
<link rel="icon" type="image/x-icon" href="assets/favicon.ico" />
<!-- Bootstrap Icons-->
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.5.0/font/bootstrap-icons.css" rel="stylesheet" />
<!-- Google fonts-->
<link href="https://fonts.googleapis.com/css?family=Merriweather+Sans:400,700" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css?family=Merriweather:400,300,300italic,400italic,700,700italic"
rel="stylesheet" type="text/css" />
<!-- SimpleLightbox plugin CSS-->
<link href="https://cdnjs.cloudflare.com/ajax/libs/SimpleLightbox/2.1.0/simpleLightbox.min.css" rel="stylesheet" />
<!-- Core theme CSS (includes Bootstrap)-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" integrity="sha384-vV55mR0Ue3wJb1YHMqGMx0C2N5oS9LbHrOMogp0uX0fF7F7+z57e0mQNxC3fOjai" crossorigin="anonymous">
<link href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css" rel="stylesheet">
<link href="css/styles.css" rel="stylesheet" />
</head>
<body id="page-top">
<!-- Navigation-->
<nav class="navbar navbar-expand-lg navbar-light fixed-top py-3" id="mainNav">
<div class="container px-4 px-lg-5">
<a class="navbar-brand" href="#page-top">Helpdesk</a>
<button class="navbar-toggler navbar-toggler-right" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false"
aria-label="Toggle navigation"><span class="navbar-toggler-icon"></span></button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ms-auto my-2 my-lg-0">
<li class="nav-item"><a class="nav-link" href="/helpdesk/index.html">Home</a></li>
<li class="nav-item"><a class="nav-link" href="/helpdesk/index.html#about">About</a></li>
<li class="nav-item"><a class="nav-link" href="/helpdesk/index.html#resources">Resources</a></li>
<li class="nav-item"><a class="nav-link" href="/helpdesk/index.html#community">Community</a></li>
<li class="nav-item"><a class="nav-link" href="#connect">Connect with-us</a></li>
<li class="nav-item"><a class="nav-link" href="/helpdesk/index.html#community">Logout</a></li>
</ul>
</div>
</div>
</nav>
<section class="page-section" style="background-color:rgba(0, 28, 51, 0.96);" id="topper">
<div class="container mt-4">
<div class="row">
<div class="col-md-6">
<!-- Chat Section -->
<h2 class="text-primary">Chat Room</h2>
<div class="card">
<div class="card-body">
<!-- Chat messages -->
<div id="chat-messages">
<!-- Example messages -->
<div class="message">User 1: Hello!</div>
<div class="message">User 2: Hi there!</div>
<div class="message">User 1: How's it going?</div>
</div>
<!-- Message input box -->
<input type="text" class="form-control" id="message-input" placeholder="Type your message...">
<button class="btn btn-primary mt-2" id="send-button">Send</button>
</div>
</div>
</div>
<div class="col-md-6">
<!-- Forum Section -->
<h2 class="text-primary">Forum Topics</h2>
<ul class="list-group">
<!-- Categories -->
<li class="list-group-item">
<h4 class="h5">Categories</h4>
<ul>
<li><a href="#">Academic Help</a></li>
<li><a href="#">Campus Life</a></li>
<li><a href="#">Internship Opportunities</a></li>
<li><a href="#">General Discussions</a></li>
<li><a href="#">Clubs & Organizations</a></li>
</ul>
</li>
</ul>
<button class="btn btn-success mt-3" id="new-topic-button">New Topic</button>
</div>
</div>
</div>
<!-- Community Guidelines -->
<div class="container mt-4">
<h2 class="text-primary">Community Guidelines</h2>
<ul class="text-light">
<li>Treat others with kindness and respect.</li>
<li>Avoid offensive language or behavior.</li>
<li>Stay on topic within discussions.</li>
<li>Do not share personal information.</li>
<li>Report any inappropriate content or behavior to our moderators.</li>
</ul>
</div>
<!-- Get Involved -->
<div class="container mt-4">
<h2 class="text-primary">Get Involved</h2>
<p class="text-light">Join discussions, share insights, and build connections with fellow students to enhance your college experience.</p>
</div>
<!-- Helpdesk -->
<div class="container mt-4">
<h2 class="text-primary">Helpdesk</h2>
<p class="text-light">If you encounter any issues with the community features or need assistance, visit our Helpdesk page for support.</p>
</div>
</section>
<section class="page-section" id="connect">
<div class="container px-4 px-lg-5">
<div class="row gx-4 gx-lg-5">
<div class="col-lg-6 pt-12">
<iframe
src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d1510.049828862413!2d80.26537608795942!3d26.50106188191156!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x399c378462b35939%3A0xb4805f171d9ebc5f!2sUniversity%20Institute%20of%20Engineering%20and%20Technology!5e0!3m2!1sen!2sin!4v1695360098124!5m2!1sen!2sin"
width="100%" height="450" style="border:0;" allowfullscreen="" loading="lazy"
referrerpolicy="no-referrer-when-downgrade"></iframe>
</div>
<div class="col-lg-6">
<div class="row gx-4 gx-lg-5">
<div class="col-lg-12 text-center">
<h2 class="mt-10">Let's Get In Touch!</h2>
<!-- <hr class="divider" /> -->
<p class="text-muted mb-5"></p>
</div>
</div>
<div class="row gx-4 gx-lg-5 mb-5">
<div class="col-lg-12">
<!-- Contact form goes here -->
<form id="contactForm" data-sb-form-api-token="API_TOKEN">
<!-- Form fields go here -->
<!-- Name input-->
<div class="form-floating mb-3">
<input class="form-control" id="name" type="text" placeholder="Enter your name..."
data-sb-validations="required" />
<label for="name">Full name</label>
<div class="invalid-feedback" data-sb-feedback="name:required">A name is required.
</div>
</div>
<!-- Email address input-->
<div class="form-floating mb-3">
<input class="form-control" id="email" type="email" placeholder="name@example.com"
data-sb-validations="required,email" />
<label for="email">Email address</label>
<div class="invalid-feedback" data-sb-feedback="email:required">An email is
required.</div>
<div class="invalid-feedback" data-sb-feedback="email:email">Email is not valid.
</div>
</div>
<!-- Phone number input-->
<div class="form-floating mb-3">
<input class="form-control" id="phone" type="tel" placeholder="(123) 456-7890"
data-sb-validations="required" />
<label for="phone">Phone number</label>
<div class="invalid-feedback" data-sb-feedback="phone:required">A phone number is
required.
</div>
</div>
<!-- Message input-->
<div class="form-floating mb-3">
<textarea class="form-control" id="message" type="text"
placeholder="Enter your message here..." style="height: 10rem"
data-sb-validations="required"></textarea>
<label for="message">Message</label>
<div class="invalid-feedback" data-sb-feedback="message:required">A message is
required.
</div>
</div>
<!-- Submit Button-->
<div class="d-grid"><button class="btn btn-primary btn-xl disabled" id="submitButton"
type="submit">Submit</button></div>
</form>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Footer-->
<!-- <footer class="bg-light py-5">
<div class="container px-4 px-lg-5"><div class="small text-center text-muted">Copyright © 2023 - Open Comunnity UIET Kanpur</div></div>
</footer> -->
<footer class="bg-dark text-light mt-5">
<div class="container mt-5">
<div class="row">
<div class="col-md-3 mt-5">
<!-- Your college logo here -->
<a class="navbar-brand" href="#page-top">
<h5>Helpdesk</h5>
</a>
<p style="font-size: small;">A open community for UIET Kanpur students</p>
</div>
<div class="col-md-3 mt-5">
<!-- Contact information -->
<h5>Contact Us:</h5>
<p style="font-size: small;">Email: contact@yourcollege.edu</p>
<p style="font-size: small;">Phone: (123) 456-7890</p>
</div>
<div class="col-md-3 mt-5">
<!-- Social media links -->
<h5>Follow Us:</h5>
<a href="#" style="text-decoration: none; font-size:small;" class="text-light">Facebook</a><br>
<a href="#" style="text-decoration: none; font-size:small;" class="text-light">Twitter</a><br>
<a href="#" style="text-decoration: none; font-size:small;" class="text-light">Instagram</a><br>
<a href="#" style="text-decoration: none; font-size:small;" class="text-light">LinkedIn</a>
</div>
<div class="col-md-3 mt-5">
<!-- Quick links -->
<h5>Quick Links:</h5>
<ul class="list-unstyled">
<li><a style="text-decoration: none;font-size:small;" href="#">Home</a></li>
<li><a style="text-decoration: none;font-size:small;" href="#">About Us</a></li>
<li><a style="text-decoration: none;font-size:small;" href="#">Resources</a></li>
<li><a style="text-decoration: none;font-size:small;" href="/index.html#community">Community</a></li>
<li><a style="text-decoration: none;font-size:small;" href="#connect">Connect with-us</a></li>
</ul>
</div>
</div>
<div class="container px-4 px-lg-5">
<div class="small text-center text-muted">Copyright © 2023 - Open Community UIET Kanpur</div>
</div>
</div>
</footer>
<!-- Bootstrap JS and Popper.js -->
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/2.10.2/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap/dist/js/bootstrap.min.js"></script>
<!-- Bootstrap core JS-->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js"></script>
<!-- SimpleLightbox plugin JS-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/SimpleLightbox/2.1.0/simpleLightbox.min.js"></script>
<!-- Core theme JS-->
<script src="js/scripts.js"></script>
<script src="js/login.js"></script>
<!-- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *-->
<!-- * * SB Forms JS * *-->
<!-- * * Activate your form at https://startbootstrap.com/solution/contact-forms * *-->
<!-- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *-->
<script src="https://cdn.startbootstrap.com/sb-forms-latest.js"></script>
</body>