adopt-a-hydrant/app/views/welcome/index.html.erb

32 lines
1.1 KiB
Plaintext
Raw Normal View History

2011-02-23 22:24:08 +00:00
<div id="map_canvas">
</div>
<div id="sidebar">
2011-02-25 19:27:21 +00:00
<img id="boston-logo" src="images/logos/boston.png" alt="City of Boston" title="City of Boston" />
<img id="cert-logo" src="images/logos/cert.png" alt="Community Emergency Response Team" title="Community Emergency Response Team" />
<img id="cfa-logo" src="images/logos/cfa.png" alt="Code for America" title="Code for America" />
2011-02-23 22:24:08 +00:00
<h1>Adopt a Hydrant</h1>
<p>
2011-02-25 19:41:54 +00:00
Claim responsibility for shoveling out a fire hydrant after it snows.
2011-02-23 22:24:08 +00:00
</p>
<form>
<label for="address">
2011-02-25 19:41:54 +00:00
Address
2011-02-23 22:24:08 +00:00
</label>
2011-02-25 19:09:26 +00:00
<input id="address" name="address" type="text" value="" tabindex="1" />
2011-02-23 22:24:08 +00:00
<label for="city">
City
</label>
<select id="city" name="city" tabindex="2">
<option value="Boston">Boston</option>
</select>
<label for="state">
State
</label>
<select id="state" name="state" tabindex="3">
<option value="MA">Massachusetts</option>
</select>
2011-02-25 19:41:54 +00:00
<button tabindex="4">Find Fire Hydrants</button>
2011-02-23 22:24:08 +00:00
</form>
2011-02-25 19:09:26 +00:00
<img id="hydrant-in-snow" src="images/hydrant-in-snow.jpg"">
2011-02-14 18:49:00 +00:00
</div>