Changed all the H1's to be H2's
git-svn-id: https://rosehill.googlecode.com/svn/branches/php@32 100bd78a-fc82-11de-b5bc-ffd2847a4b57
This commit is contained in:
parent
3bc8cc7752
commit
57f9cc779b
|
@ -5,7 +5,7 @@
|
|||
* @author Cliff Ingham <inghamn@bloomington.in.gov>
|
||||
*/
|
||||
?>
|
||||
<h1>Add Cemetery</h1>
|
||||
<h2>Add Cemetery</h2>
|
||||
<form method="post" action="<?php echo $_SERVER['SCRIPT_NAME']; ?>" enctype="multipart/form-data">
|
||||
<fieldset><legend>Cemetery Info</legend>
|
||||
<table>
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
*/
|
||||
?>
|
||||
<div class="interfaceBox">
|
||||
<h1>
|
||||
<h2>
|
||||
<?php
|
||||
if (userIsAllowed('Cemeteries')) {
|
||||
echo "
|
||||
|
@ -17,7 +17,7 @@
|
|||
}
|
||||
?>
|
||||
Cemeteries
|
||||
</h1>
|
||||
</h2>
|
||||
<ul><?php
|
||||
foreach ($this->cemeteryList as $cemetery) {
|
||||
$editButton = '';
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
* @param Cemetery $this->cemetery
|
||||
*/
|
||||
?>
|
||||
<h1>Update Cemetery</h1>
|
||||
<h2>Update Cemetery</h2>
|
||||
<form method="post" action="<?php echo $_SERVER['SCRIPT_NAME']; ?>" enctype="multipart/form-data">
|
||||
<fieldset><legend>Cemetery Info</legend>
|
||||
<input name="cemetery_id" type="hidden" value="<?php echo $this->cemetery->getId(); ?>" />
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
* @author Cliff Ingham <inghamn@bloomington.in.gov>
|
||||
*/
|
||||
?>
|
||||
<h1>Add Deed</h1>
|
||||
<h2>Add Deed</h2>
|
||||
<form method="post" action="<?php echo $_SERVER['SCRIPT_NAME']; ?>">
|
||||
<fieldset><legend>Deed Info</legend>
|
||||
<table>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
*/
|
||||
?>
|
||||
<div class="interfaceBox">
|
||||
<h1>
|
||||
<h2>
|
||||
<?php
|
||||
if (userIsAllowed('Deeds')) {
|
||||
echo "
|
||||
|
@ -18,7 +18,7 @@
|
|||
}
|
||||
?>
|
||||
Deeds
|
||||
</h1>
|
||||
</h2>
|
||||
<table>
|
||||
<thead>
|
||||
<tr><th></th>
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
@param Deed $this->deed
|
||||
*/
|
||||
?>
|
||||
<h1>Update Deed</h1>
|
||||
<h2>Update Deed</h2>
|
||||
<form method="post" action="<?php echo $_SERVER['SCRIPT_NAME']; ?>">
|
||||
<fieldset><legend>Deed Info</legend>
|
||||
<input name="deed_id" type="hidden" value="<?php echo $this->deed->getId(); ?>" />
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
*/
|
||||
$return_url = isset($this->return_url) ? $this->return_url : BASE_URL.'/interments';
|
||||
?>
|
||||
<h1>Add Interment</h1>
|
||||
<h2>Add Interment</h2>
|
||||
<form method="post" action="<?php echo BASE_URL; ?>/interments/addInterment.php">
|
||||
<fieldset><legend>Interment Info</legend>
|
||||
<input type="hidden" name="return_url" value="<?php echo $return_url; ?>" />
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
* @author Cliff Ingham <inghamn@bloomington.in.gov>
|
||||
*/
|
||||
?>
|
||||
<h1>Search Burial Records</h1>
|
||||
<h2>Search Burial Records</h2>
|
||||
<form method="get" action="<?php echo BASE_URL; ?>/interments">
|
||||
<table>
|
||||
<tr><td><label for="lastname">Last Name</label></td>
|
||||
|
@ -21,7 +21,7 @@
|
|||
<tr><td><label for="cemetery_id">Cemetery</label></td>
|
||||
<td><select name="cemetery_id" id="cemetery_id"
|
||||
onchange="COB.populateSections(this.options[this.selectedIndex].value,'section_id','<?php echo BASE_URL; ?>')">
|
||||
<option></option>
|
||||
<option value="">Any Cemetery</option>
|
||||
<?php
|
||||
$cemeteries = new CemeteryList();
|
||||
$cemeteries->find();
|
||||
|
@ -38,7 +38,7 @@
|
|||
</tr>
|
||||
<tr><td><label for="section_id">Section</label></td>
|
||||
<td><select name="section_id" id="section_id">
|
||||
<option></option>
|
||||
<option value="">Any Section</option>
|
||||
<?php
|
||||
if (isset($_GET['cemetery_id'])) {
|
||||
$sections = new SectionList(array('cemetery_id'=>$_GET['cemetery_id']));
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
*/
|
||||
$return_url = $this->return_url ? $this->return_url : BASE_URL.'/interments';
|
||||
?>
|
||||
<h1>Update Interment</h1>
|
||||
<h2>Update Interment</h2>
|
||||
<form method="post" action="<?php echo BASE_URL; ?>/interments/updateInterment.php">
|
||||
<fieldset><legend>Interment Info</legend>
|
||||
<input name="interment_id" type="hidden" value="<?php echo $this->interment->getId(); ?>" />
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
* @author Cliff Ingham <inghamn@bloomington.in.gov>
|
||||
*/
|
||||
?>
|
||||
<h1>Add Person</h1>
|
||||
<h2>Add Person</h2>
|
||||
<form method="post" action="<?php echo $_SERVER['SCRIPT_NAME']; ?>">
|
||||
<fieldset><legend>Personal Info</legend>
|
||||
<table>
|
||||
|
|
|
@ -17,7 +17,7 @@ if (!$username && userIsAllowed('Users')) {
|
|||
|
||||
$name = View::escape($this->person->getFullname());
|
||||
echo "
|
||||
<h1>$name</h1>
|
||||
<h2>$name</h2>
|
||||
<table>
|
||||
<tr><th>Username</th>
|
||||
<td>$username</td>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
*/
|
||||
?>
|
||||
<div class="interfaceBox">
|
||||
<h1><?php
|
||||
<h2><?php
|
||||
if (userIsAllowed('Users')) {
|
||||
echo "
|
||||
<button type=\"button\" class=\"add\" onclick=\"document.location.href='".BASE_URL."/people/addPerson.php';\">
|
||||
|
@ -17,7 +17,7 @@
|
|||
}
|
||||
?>
|
||||
People
|
||||
</h1>
|
||||
</h2>
|
||||
<table>
|
||||
<?php
|
||||
foreach ($this->personList as $person) {
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
* @param Person $this->person
|
||||
*/
|
||||
?>
|
||||
<h1>Update Person</h1>
|
||||
<h2>Update Person</h2>
|
||||
<form method="post" action="<?php echo $_SERVER['SCRIPT_NAME']; ?>">
|
||||
<fieldset><legend>Person Info</legend>
|
||||
<input name="person_id" type="hidden" value="<?php echo $this->person->getId(); ?>" />
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
* @param Cemetery $this->cemetery
|
||||
*/
|
||||
?>
|
||||
<h1>Add Section</h1>
|
||||
<h2>Add Section</h2>
|
||||
<form method="post" action="<?php echo $_SERVER['SCRIPT_NAME']; ?>" enctype="multipart/form-data">
|
||||
<fieldset><legend>Section Info</legend>
|
||||
<input type="hidden" name="cemetery_id" value="<?php echo $this->cemetery->getId(); ?>" />
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
* @param Section $this->section
|
||||
*/
|
||||
?>
|
||||
<h1>Update Section</h1>
|
||||
<h2>Update Section</h2>
|
||||
<form method="post" action="<?php echo $_SERVER['SCRIPT_NAME']; ?>" enctype="multipart/form-data">
|
||||
<fieldset><legend>Section Info</legend>
|
||||
<input name="section_id" type="hidden" value="<?php echo $this->section->getId(); ?>" />
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
* @author Cliff Ingham <inghamn@bloomington.in.gov>
|
||||
*/
|
||||
?>
|
||||
<h1>New User Account</h1>
|
||||
<h2>New User Account</h2>
|
||||
<form method="post" action="<?php echo $_SERVER['SCRIPT_NAME']; ?>">
|
||||
<fieldset><legend>Login Info</legend>
|
||||
<table>
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
* @param User $this->user
|
||||
*/
|
||||
?>
|
||||
<h1>Edit <?php echo $this->user->getUsername(); ?></h1>
|
||||
<h2>Edit <?php echo $this->user->getUsername(); ?></h2>
|
||||
<form method="post" action="<?php echo $_SERVER['SCRIPT_NAME']; ?>">
|
||||
<fieldset><legend>Login Info</legend>
|
||||
<input name="user_id" type="hidden" value="<?php echo $this->user->getId(); ?>" />
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
*/
|
||||
?>
|
||||
<div class="interfaceBox">
|
||||
<h1><?php
|
||||
<h2><?php
|
||||
if (userIsAllowed('Users')) {
|
||||
echo "
|
||||
<button type=\"button\" class=\"add\" onclick=\"document.location.href='".BASE_URL."/users/addUser.php';\">
|
||||
|
@ -17,7 +17,7 @@
|
|||
}
|
||||
?>
|
||||
User Accounts
|
||||
</h1>
|
||||
</h2>
|
||||
<table>
|
||||
<?php
|
||||
foreach ($this->userList as $user) {
|
||||
|
|
Loading…
Reference in New Issue