-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout-the-app.html
58 lines (51 loc) · 2.57 KB
/
about-the-app.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="./styles/styles.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script>
$(function () { $("head").load("head.html") });
</script>
<title>MC 311 Tool-About the App</title>
</head>
<body>
<div id="preloader">
<div id="status"> </div>
</div>
<div id="navbar"></div>
<div class="container my-3">
<h1 class="display-6">About the App</h1>
</div>
<div class="container row justify-content-center">
<div class="col-5 mx-2">
<h4>The MC311 Note Tool</h4>
<p>Montgomery County, Maryland's 311 phone number (known simply as MC311) serves as the main entry
point for residents to access public information and government services. This application was built to
help increase the speed and efficiency that the representatives from MC311 can access information and
handle calls. This is primarily done by generating fleshed out notes based on minimal user inputs, and
aggregating commonly accessed data. The idea is that reducing the redundancies associated with this job
would help representatives assist more residents.</p>
</div>
<div class="col-5 mx-2">
<h4>General tips for users</h4>
<ul>
<li>The next input field can be jumped to by hitting tab, including the copy button
<button id="about-copy-btn" type="" class="btn btn-primary" disabled>
<i class="bi bi-clipboard me-1"></i></button>
The less time one uses the mouse to navigate, the faster they will move.
</li>
<li>When the copy button is highlighted by tabbing to it, notes can be copied with spacebar, or the
Enter key. You can
also click this button with your mouse, though this is not recommended.</li>
<li>In the "Ride On Arrival" section, if the Minutes field is left blank, or filled with “0,
the notes
will adjust for a bus arriving at any moment.</li>
<li>On the "DEP Inspection" section, if the contact ID is left blank, or filled with
"0", the notes will
adjust to a transfer to a DPS specialist</li>
</ul>
</div>
</div>
</body>
<script src="./scripts/scripts.js" type="module"></script>
</html>