-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.html
More file actions
118 lines (114 loc) · 6.21 KB
/
Copy pathhome.html
File metadata and controls
118 lines (114 loc) · 6.21 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl" crossorigin="anonymous">
<link rel="stylesheet" href="home.css">
<title>Home</title>
</head>
<body>
<header>
<nav class="navbar navbar-expand-lg fixed-top navbar-dark bg-primary">
<div class="container-fluid">
<a class="navbar-brand" href="https://www.nitp.ac.in/">NIT Patna</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
<div class="navbar-nav">
<a class="nav-link" href="#features">Features</a>
<a class="nav-link" href="#instr">Instructions</a>
<a href="#new_petition" class="nav-link">Write</a>
<a class="nav-link" href="#abt">About</a>
<button type="button" class="btn btn-primary" id="signout"><svg
xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor"
class="bi bi-power" viewBox="0 0 16 16">
<path d="M7.5 1v7h1V1h-1z" />
<path
d="M3 8.812a4.999 4.999 0 0 1 2.578-4.375l-.485-.874A6 6 0 1 0 11 3.616l-.501.865A5 5 0 1 1 3 8.812z" />
</svg> Signout</button>
</div>
</div>
</div>
</nav>
</header>
<div class="container" style="margin-top: 5%;">
<div class="row">
<div class="col">
<p>
<h1 id="features" class="display-6">Features</h1>
<ul>
<li>You can put up any grievances which you genuinly think should be addressed by the
administration.</li>
<li>If the number of votes on post increases a certain limit, the authorities will come to know what
are the grievances of the students.</li>
<li>If the community finds some post to be irrelevant then, they can downvote a partiular post, and
if the votes fall below a certin limit, the post will be deleted.</li>
</ul>
</p>
</div>
<div id="main" class="col-lg-8 col-md-6 col-xs-4">
</div>
<div class="col">
<p>
<h1 id="instr" class="display-6">Instructions</h1>
<ul>
<li>Please try to keep your post Respectful, as it is a community page</li>
<li>Please try to keep your post compact and impactful.</li>
<li>Please mention your name, branch and year at the end of your post.</li>
<li>Please do not put up your personal grievances here, look out for the matter that is genuine and
affects a large number of students.</li>
<li>In case of any querry regarding the page or any feedback, feel free to reach out to me!! :)</li>
</ul>
</p>
</div>
</div>
<div class="row">
<div class="col-3"></div>
<div class="col-lg-6 col-sm-8">
<div class="card" id="new_petition">
<div class="card-header">Form for a new petition</div>
<div class="card-body">
<form action="/none" id="p_frm">
<div class="mb-3">
<label class="form-label" for="iname">Issue</label>
<input class="form-control" type="text" id="iname" name="iname"
placeholder="Write the issue you want to petition about">
</div>
<div class="mb-3">
<label class="form-label" for="itext">Description</label>
<textarea class="form-control" name="content" id="itext" cols="30" rows="10"
placeholder="Describe your problem here, along with your information"></textarea>
</div>
<button id="s_btn" type="submit" class="btn btn-success">Submit</button>
</form>
</div>
</div>
</div>
<div class="col-3"></div>
</div>
</div>
<footer id="abt">
<p>
This site is made to facilitate the students of NIT Patna to get their greviances addressed by the
authorities.
Made by-Avnit Prakash,ECE,NIT Patna.
</p>
</footer>
<script src="https://www.gstatic.com/firebasejs/8.2.10/firebase-app.js"></script>
<!-- TODO: Add SDKs for Firebase products that you want to use
https://firebase.google.com/docs/web/setup#available-libraries -->
<script src="https://www.gstatic.com/firebasejs/8.2.10/firebase-analytics.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.2.10/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.2.10/firebase-firestore.js"></script>
<script src="home.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-b5kHyXgcpbZJO/tY9Ul7kGkf1S0CWuKcCD38l8YkeH8z8QjE0GmW1gYU5S9FOnJ0"
crossorigin="anonymous"></script>
</body>
</html>