-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (54 loc) · 2.83 KB
/
index.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
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Make DeKalb Count | Sign the Pledge</title>
<link rel="stylesheet" href="assets/css/uswds.min.css" />
</head>
<body>
<main id="main-content">
<section class="usa-hero">
<div class="grid-container">
<div class="usa-hero__callout">
<h1 class="usa-hero__heading"><span class="usa-hero__heading--alt">MAKE DEKALB COUNT:</span>CENSUS 2020</h1>
<p>April 1, 2020. #COUNTMEINDEKALB</p></a>
</div>
</div>
</section>
<section class="grid-container usa-section">
<div class="grid-row grid-gap">
<div class="tablet:grid-col-4">
<h2 class="font-heading-xl margin-top-0 tablet:margin-bottom-0">I pledge to count my household in the 2020 Census!</h2>
</div>
<div class="tablet:grid-col-8 usa-prose">
<form class="usa-form" method="post" action="/thanks" netlify>
<fieldset class="usa-fieldset">
<legend class="usa-legend">Sign the Pledge</legend>
<label class="usa-label" for="email">Email</label>
<input class="usa-input" id="email" name="email" type="text" required aria-required="true">
<label class="usa-label" for="first-name">First name</label>
<input class="usa-input" id="first-name" name="first-name" type="text" required aria-required="true">
<label class="usa-label" for="last-name">Last name</label>
<input class="usa-input" id="last-name" name="last-name" type="text" required aria-required="true">
<label class="usa-label" for="cell-number">Cell number</label>
<input class="usa-input" id="cell-number" name="cell-number" type="text" required aria-required="true">
<label class="usa-label" for="street-address">Street address</label>
<input class="usa-input" id="street-address" name="street-address" type="text" required aria-required="true">
<label class="usa-label" for="zip-code">Zip code</label>
<input class="usa-input usa-input--medium" id="zip-code" name="zip-code" type="text" required aria-required="true">
<br>
<div class="usa-checkbox">
<input class="usa-checkbox__input" id="yard-sign" type="checkbox" name="yard-sign" value="Y">
<label class="usa-checkbox__label" for="yard-sign">Yes, I want a Census 2020 yard sign</label>
</div>
<input class="usa-button" type="submit" value="Sign in">
</fieldset>
</form>
</div>
</div>
</section>
</main>
<script src="assets/js/uswds.min.js"></script>
</body>
</html>