-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.hbs
36 lines (30 loc) · 1017 Bytes
/
about.hbs
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
<!DOCTYPE html>
<html>
<head>
<title> About </title>
<script type="text/javascript" src="/js/scripts.js"></script>
<link rel="stylesheet" type="text/css" href="/css/styles.css">
</head>
<body>
{{> specialnav}}
<h1>
<div class="header">
About
</div>
</h1>
<br>
<div class="content">
<h1>Purpose</h1>
<p> This is a seat reservation application wherein users can view
the various seat plans of the different labs at different times
and choose the seats that they want to reserve.
</p>
<h1>NPM packages and 3rd party libaries</h1>
<p>For this application, the only NPM package used is the default that is provided from
running npm install. For 3rd party libraries, we used bcrypt.
</p>
</div>
<nav>
</nav>
</body>
</html>