2009-12-18 12:56:12 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @copyright 2009 City of Bloomington, Indiana
|
2011-06-14 13:29:37 +00:00
|
|
|
* @license http://www.gnu.org/licenses/agpl.txt GNU/AGPL, see LICENSE.txt
|
2009-12-18 12:56:12 +00:00
|
|
|
* @author Cliff Ingham <inghamn@bloomington.in.gov>
|
|
|
|
*/
|
|
|
|
?>
|
2010-01-06 18:10:10 +00:00
|
|
|
<h2>Add Person</h2>
|
2009-12-18 12:56:12 +00:00
|
|
|
<form method="post" action="<?php echo $_SERVER['SCRIPT_NAME']; ?>">
|
|
|
|
<fieldset><legend>Personal Info</legend>
|
|
|
|
<table>
|
|
|
|
|
|
|
|
<tr><td><label for="person-firstname" class="required">Firstname</label></td>
|
|
|
|
<td><input name="person[firstname]" id="person-firstname" />
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
<tr><td><label for="person-lastname" class="required">Lastname</label></td>
|
|
|
|
<td><input name="person[lastname]" id="person-lastname" />
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
<tr><td><label for="person-email">Email</label></td>
|
|
|
|
<td><input name="person[email]" id="person-email" />
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<button type="submit" class="submit">Submit</button>
|
|
|
|
<button type="button" class="cancel" onclick="document.location.href='<?php echo BASE_URL; ?>/people';">
|
|
|
|
Cancel
|
|
|
|
</button>
|
|
|
|
</fieldset>
|
|
|
|
</form>
|