-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.php
106 lines (69 loc) · 3.74 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>FindNearby</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link href="https://fonts.googleapis.com/css?family=Bungee+Inline" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Architects+Daughter" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Luckiest+Guy" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Quantico" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Russo+One" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Architects+Daughter" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCDmFqQa3GmRdYRtITKJnv3qF3-tsL5H2A&v=3.exp&sensor=false&libraries=places"></script>
<script src="https://use.fontawesome.com/4ade0e5ef1.js"></script>
<style type="text/css">
</style>
</head>
<body>
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../welcome/index.php">VIT Connect</a>
</div>
<ul class="nav navbar-nav">
<li ><a href="task_reminder/reminder_script.php">Reminders</a></li>
<li><a href="notesharing/index.html">Notes Share</a></li>
<li><a href="discussion_room/create_topic.php">Discussion Room</a></li>
<li><a href="attendance_manager/modifyattend.php">Attendence Manager</a></li>
</ul>
</div>
</nav>
<div class="container-fluid" style="margin-top:50px">
<div class="container-fluid text-center" style="background-color:#A7C2E2;width:100%">
<h1 style="text-align: center; color:#080C17;font-family: 'Russo One', sans-serif;"> About</h1>
</div>
</div>
<div class="container-fluid">
<div class="container-fluid " >
<h3 style="color:#080C17;font-family: 'Architects Daughter', cursive;">
This web application was built during W.A.R :p ( Weekend Aplication Rumble ), a 72-hr. hackathon organized by Programmer's Hub, VIT Pune.<br><br>
Team Members:
Nilesh Prasad , Chaitanya Deshpande and Vinit Vijan.
<br><br>
Technologies Used :
1.PHP
2.MYSQL
3.JAVASCRIPT
4.FIREBASE
<br><br>
UI:
1.BOOTSTRAP
2.MATERIAL DESIGN LITE
<br><br>
Features Implemented :<br><br><b>
1. Student login -used Firebase for realtime data storage.<br>
2. Attendance Manager<br>
3. Task Reminder <br>
4. Discussion Room <br>
5. Note Sharing - used firebase <br></b>
<br><br>
</h3>
</div>
</div>
</body>
</html>