-
Notifications
You must be signed in to change notification settings - Fork 0
/
stop.php
42 lines (42 loc) · 1.46 KB
/
stop.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
<?php
$pageTitle = "Minimal METRO - check the status of a stop";
$css = "onboard";
include 'head.php';
?>
<body>
<header class="onboarding__header">
<h1 class="onboarding__headline">
<span class="visuallyhidden">Minimal METRO</span>
<?php include('svg/logo.svg'); ?>
</h1>
</header>
<form action="app.php" method="GET" class="onboarding__form">
<div class="dialog">
<h2 class="dialog__heading">Off the beaten path?</h2>
<p>Enter any METRO STOP ID here to see what buses are on the way.</p>
<div class="onboardingInput">
<label for="am" class="onboardingInput__label">Stop ID</label>
<input
type="number"
name="am"
id="am"
class="input onboardingInput__input"
placeholder="e.g., 132"
required
autofocus
/>
<span class="onboardingInput__background"></span>
</div>
<p>
<button class="button button--pushy button--block button--large" type="submit">Submit</button>
</p>
</div>
</form>
<footer class="onboarding__footer">
©<?php echo date("Y"); ?> Personable Design |
<a class="link--light" href="mailto:c%68ris@pe%72sona%62ledesig%6E.co%6D">Contact me</a>
|
<a class="link--light" href="https://github.com/personable/minimal-metro">Github</a>
</footer>
</body>
</html>