2009-12-18 14:28:25 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @copyright 2009 City of Bloomington, Indiana
|
|
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.txt
|
|
|
|
* @author Cliff Ingham <inghamn@bloomington.in.gov>
|
|
|
|
*/
|
|
|
|
?>
|
2010-01-06 18:10:10 +00:00
|
|
|
<h2>Add Cemetery</h2>
|
2010-01-04 20:23:16 +00:00
|
|
|
<form method="post" action="<?php echo $_SERVER['SCRIPT_NAME']; ?>" enctype="multipart/form-data">
|
2009-12-18 14:28:25 +00:00
|
|
|
<fieldset><legend>Cemetery Info</legend>
|
|
|
|
<table>
|
|
|
|
|
|
|
|
<tr><td><label for="cemetery-name" class="required">Name</label></td>
|
|
|
|
<td><input name="cemetery[name]" id="cemetery-name" />
|
|
|
|
</td>
|
|
|
|
</tr>
|
2009-12-18 20:57:41 +00:00
|
|
|
<tr><td><label for="cemetery-googleMapURL">Google Map URL</label></td>
|
|
|
|
<td><input name="cemetery[googleMapURL]" id="cemetery-googleMapURL" /></td>
|
|
|
|
</tr>
|
2009-12-18 14:28:25 +00:00
|
|
|
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<button type="submit" class="submit">Submit</button>
|
2009-12-18 20:57:41 +00:00
|
|
|
<button type="button" class="cancel" onclick="document.location.href='<?php echo BASE_URL; ?>/cemeteries';">
|
2009-12-18 14:28:25 +00:00
|
|
|
Cancel
|
|
|
|
</button>
|
|
|
|
</fieldset>
|
2010-01-04 20:23:16 +00:00
|
|
|
<fieldset><legend>Maps</legend>
|
|
|
|
<div>
|
|
|
|
<label for="map">Map</lable>
|
|
|
|
<input type="file" name="map" id="map" />
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<label for="thumbnail">Thumbnail</lable>
|
|
|
|
<input type="file" name="thumbnail" id="thumbnail" />
|
|
|
|
</div>
|
|
|
|
</fieldset>
|
2009-12-18 14:28:25 +00:00
|
|
|
</form>
|