Skip to content

Commit b10cdda

Browse files
Testing out buttons
1 parent 2865e04 commit b10cdda

File tree

5 files changed

+26
-4
lines changed

5 files changed

+26
-4
lines changed

.idea/workspace.xml

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

static/get_started.css

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,14 @@
1010
text-align: center;
1111
}
1212

13-
ul {
14-
font-size: 35px;
13+
.buttons {
14+
display: flex;
15+
text-align: center;
16+
align-items: center;
17+
justify-content: center;
18+
}
19+
20+
.buttons button {
21+
padding: 20px;
22+
width: 48%;
1523
}

static/get_started.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
function goBackPage() {
2+
3+
}

static/styles.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,10 @@ p {
8080
font-size: 30px;
8181
}
8282

83+
ul {
84+
font-size: 30px;
85+
}
86+
8387
hr {
8488
border-top: 5px solid black;
8589
}

templates/get_started.html

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,11 @@ <h1>Getting Started:</h1>
4444
</div>
4545
<div id="step_3" class="step_3">
4646
<img src="/static/images/step_3.png" alt="Tutorial Step 3"/>
47-
<p>After this, you will be directed the search and guide page. Use the dropdown menu to choose your search filter (either room number, room name, or teacher name)</p>
47+
<p>After this, you will be directed the search and guide page. Use the dropdown menu to choose your search filter (either room number, room name, or teacher name).</p>
4848
</div>
4949
<div id="step_4" class="step_4">
5050
<img src="/static/images/step_4.png" alt="Tutorial Step 4"/>
51-
<p>After this, you will be directed the search and guide page. Use the dropdown menu to choose your search filter (either room number, room name, or teacher name)</p>
51+
<p>Use the floor 1 or floor 2 buttons to indicate which floor you are on to allow for more location accuracy and for the directions to display correctly.</p>
5252
</div>
5353
<div id="step_5" class="step_5">
5454
<img src="/static/images/step_5.png" alt="Tutorial Step 5"/>
@@ -62,11 +62,16 @@ <h1>Getting Started:</h1>
6262
<p>Additional Notes for Guidance:</p>
6363
<ul>
6464
<li>Useful links can be found on the "Resources" page.</li>
65+
<li>The settings will reset once you navigate away from the guide page.</li>
6566
<li>The hallways have odd number rooms on one side and even numbered rooms on the other.</li>
6667
<li>If location isn’t accurate, try disconnecting from the Wi-Fi or cellular data and the reconnecting.</li>
6768
</ul>
6869
</div>
6970
</div>
7071
</div>
72+
<div class="buttons">
73+
<button onclick="goBackPage()">Back</button>
74+
<button onclick="nextPage()">Next</button>
75+
</div>
7176
</body>
7277
</html>

0 commit comments

Comments
 (0)