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:
inghamn 2010-01-06 18:10:10 +00:00
parent 3bc8cc7752
commit 57f9cc779b
18 changed files with 24 additions and 24 deletions

View File

@ -5,7 +5,7 @@
* @author Cliff Ingham <inghamn@bloomington.in.gov> * @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"> <form method="post" action="<?php echo $_SERVER['SCRIPT_NAME']; ?>" enctype="multipart/form-data">
<fieldset><legend>Cemetery Info</legend> <fieldset><legend>Cemetery Info</legend>
<table> <table>

View File

@ -6,7 +6,7 @@
*/ */
?> ?>
<div class="interfaceBox"> <div class="interfaceBox">
<h1> <h2>
<?php <?php
if (userIsAllowed('Cemeteries')) { if (userIsAllowed('Cemeteries')) {
echo " echo "
@ -17,7 +17,7 @@
} }
?> ?>
Cemeteries Cemeteries
</h1> </h2>
<ul><?php <ul><?php
foreach ($this->cemeteryList as $cemetery) { foreach ($this->cemeteryList as $cemetery) {
$editButton = ''; $editButton = '';

View File

@ -6,7 +6,7 @@
* @param Cemetery $this->cemetery * @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"> <form method="post" action="<?php echo $_SERVER['SCRIPT_NAME']; ?>" enctype="multipart/form-data">
<fieldset><legend>Cemetery Info</legend> <fieldset><legend>Cemetery Info</legend>
<input name="cemetery_id" type="hidden" value="<?php echo $this->cemetery->getId(); ?>" /> <input name="cemetery_id" type="hidden" value="<?php echo $this->cemetery->getId(); ?>" />

View File

@ -5,7 +5,7 @@
* @author Cliff Ingham <inghamn@bloomington.in.gov> * @author Cliff Ingham <inghamn@bloomington.in.gov>
*/ */
?> ?>
<h1>Add Deed</h1> <h2>Add Deed</h2>
<form method="post" action="<?php echo $_SERVER['SCRIPT_NAME']; ?>"> <form method="post" action="<?php echo $_SERVER['SCRIPT_NAME']; ?>">
<fieldset><legend>Deed Info</legend> <fieldset><legend>Deed Info</legend>
<table> <table>

View File

@ -7,7 +7,7 @@
*/ */
?> ?>
<div class="interfaceBox"> <div class="interfaceBox">
<h1> <h2>
<?php <?php
if (userIsAllowed('Deeds')) { if (userIsAllowed('Deeds')) {
echo " echo "
@ -18,7 +18,7 @@
} }
?> ?>
Deeds Deeds
</h1> </h2>
<table> <table>
<thead> <thead>
<tr><th></th> <tr><th></th>

View File

@ -6,7 +6,7 @@
@param Deed $this->deed @param Deed $this->deed
*/ */
?> ?>
<h1>Update Deed</h1> <h2>Update Deed</h2>
<form method="post" action="<?php echo $_SERVER['SCRIPT_NAME']; ?>"> <form method="post" action="<?php echo $_SERVER['SCRIPT_NAME']; ?>">
<fieldset><legend>Deed Info</legend> <fieldset><legend>Deed Info</legend>
<input name="deed_id" type="hidden" value="<?php echo $this->deed->getId(); ?>" /> <input name="deed_id" type="hidden" value="<?php echo $this->deed->getId(); ?>" />

View File

@ -7,7 +7,7 @@
*/ */
$return_url = isset($this->return_url) ? $this->return_url : BASE_URL.'/interments'; $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"> <form method="post" action="<?php echo BASE_URL; ?>/interments/addInterment.php">
<fieldset><legend>Interment Info</legend> <fieldset><legend>Interment Info</legend>
<input type="hidden" name="return_url" value="<?php echo $return_url; ?>" /> <input type="hidden" name="return_url" value="<?php echo $return_url; ?>" />

View File

@ -5,7 +5,7 @@
* @author Cliff Ingham <inghamn@bloomington.in.gov> * @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"> <form method="get" action="<?php echo BASE_URL; ?>/interments">
<table> <table>
<tr><td><label for="lastname">Last Name</label></td> <tr><td><label for="lastname">Last Name</label></td>
@ -21,7 +21,7 @@
<tr><td><label for="cemetery_id">Cemetery</label></td> <tr><td><label for="cemetery_id">Cemetery</label></td>
<td><select name="cemetery_id" id="cemetery_id" <td><select name="cemetery_id" id="cemetery_id"
onchange="COB.populateSections(this.options[this.selectedIndex].value,'section_id','<?php echo BASE_URL; ?>')"> onchange="COB.populateSections(this.options[this.selectedIndex].value,'section_id','<?php echo BASE_URL; ?>')">
<option></option> <option value="">Any Cemetery</option>
<?php <?php
$cemeteries = new CemeteryList(); $cemeteries = new CemeteryList();
$cemeteries->find(); $cemeteries->find();
@ -38,7 +38,7 @@
</tr> </tr>
<tr><td><label for="section_id">Section</label></td> <tr><td><label for="section_id">Section</label></td>
<td><select name="section_id" id="section_id"> <td><select name="section_id" id="section_id">
<option></option> <option value="">Any Section</option>
<?php <?php
if (isset($_GET['cemetery_id'])) { if (isset($_GET['cemetery_id'])) {
$sections = new SectionList(array('cemetery_id'=>$_GET['cemetery_id'])); $sections = new SectionList(array('cemetery_id'=>$_GET['cemetery_id']));

View File

@ -8,7 +8,7 @@
*/ */
$return_url = $this->return_url ? $this->return_url : BASE_URL.'/interments'; $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"> <form method="post" action="<?php echo BASE_URL; ?>/interments/updateInterment.php">
<fieldset><legend>Interment Info</legend> <fieldset><legend>Interment Info</legend>
<input name="interment_id" type="hidden" value="<?php echo $this->interment->getId(); ?>" /> <input name="interment_id" type="hidden" value="<?php echo $this->interment->getId(); ?>" />

View File

@ -5,7 +5,7 @@
* @author Cliff Ingham <inghamn@bloomington.in.gov> * @author Cliff Ingham <inghamn@bloomington.in.gov>
*/ */
?> ?>
<h1>Add Person</h1> <h2>Add Person</h2>
<form method="post" action="<?php echo $_SERVER['SCRIPT_NAME']; ?>"> <form method="post" action="<?php echo $_SERVER['SCRIPT_NAME']; ?>">
<fieldset><legend>Personal Info</legend> <fieldset><legend>Personal Info</legend>
<table> <table>

View File

@ -17,7 +17,7 @@ if (!$username && userIsAllowed('Users')) {
$name = View::escape($this->person->getFullname()); $name = View::escape($this->person->getFullname());
echo " echo "
<h1>$name</h1> <h2>$name</h2>
<table> <table>
<tr><th>Username</th> <tr><th>Username</th>
<td>$username</td> <td>$username</td>

View File

@ -7,7 +7,7 @@
*/ */
?> ?>
<div class="interfaceBox"> <div class="interfaceBox">
<h1><?php <h2><?php
if (userIsAllowed('Users')) { if (userIsAllowed('Users')) {
echo " echo "
<button type=\"button\" class=\"add\" onclick=\"document.location.href='".BASE_URL."/people/addPerson.php';\"> <button type=\"button\" class=\"add\" onclick=\"document.location.href='".BASE_URL."/people/addPerson.php';\">
@ -17,7 +17,7 @@
} }
?> ?>
People People
</h1> </h2>
<table> <table>
<?php <?php
foreach ($this->personList as $person) { foreach ($this->personList as $person) {

View File

@ -6,7 +6,7 @@
* @param Person $this->person * @param Person $this->person
*/ */
?> ?>
<h1>Update Person</h1> <h2>Update Person</h2>
<form method="post" action="<?php echo $_SERVER['SCRIPT_NAME']; ?>"> <form method="post" action="<?php echo $_SERVER['SCRIPT_NAME']; ?>">
<fieldset><legend>Person Info</legend> <fieldset><legend>Person Info</legend>
<input name="person_id" type="hidden" value="<?php echo $this->person->getId(); ?>" /> <input name="person_id" type="hidden" value="<?php echo $this->person->getId(); ?>" />

View File

@ -6,7 +6,7 @@
* @param Cemetery $this->cemetery * @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"> <form method="post" action="<?php echo $_SERVER['SCRIPT_NAME']; ?>" enctype="multipart/form-data">
<fieldset><legend>Section Info</legend> <fieldset><legend>Section Info</legend>
<input type="hidden" name="cemetery_id" value="<?php echo $this->cemetery->getId(); ?>" /> <input type="hidden" name="cemetery_id" value="<?php echo $this->cemetery->getId(); ?>" />

View File

@ -6,7 +6,7 @@
* @param Section $this->section * @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"> <form method="post" action="<?php echo $_SERVER['SCRIPT_NAME']; ?>" enctype="multipart/form-data">
<fieldset><legend>Section Info</legend> <fieldset><legend>Section Info</legend>
<input name="section_id" type="hidden" value="<?php echo $this->section->getId(); ?>" /> <input name="section_id" type="hidden" value="<?php echo $this->section->getId(); ?>" />

View File

@ -5,7 +5,7 @@
* @author Cliff Ingham <inghamn@bloomington.in.gov> * @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']; ?>"> <form method="post" action="<?php echo $_SERVER['SCRIPT_NAME']; ?>">
<fieldset><legend>Login Info</legend> <fieldset><legend>Login Info</legend>
<table> <table>

View File

@ -6,7 +6,7 @@
* @param User $this->user * @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']; ?>"> <form method="post" action="<?php echo $_SERVER['SCRIPT_NAME']; ?>">
<fieldset><legend>Login Info</legend> <fieldset><legend>Login Info</legend>
<input name="user_id" type="hidden" value="<?php echo $this->user->getId(); ?>" /> <input name="user_id" type="hidden" value="<?php echo $this->user->getId(); ?>" />

View File

@ -7,7 +7,7 @@
*/ */
?> ?>
<div class="interfaceBox"> <div class="interfaceBox">
<h1><?php <h2><?php
if (userIsAllowed('Users')) { if (userIsAllowed('Users')) {
echo " echo "
<button type=\"button\" class=\"add\" onclick=\"document.location.href='".BASE_URL."/users/addUser.php';\"> <button type=\"button\" class=\"add\" onclick=\"document.location.href='".BASE_URL."/users/addUser.php';\">
@ -17,7 +17,7 @@
} }
?> ?>
User Accounts User Accounts
</h1> </h2>
<table> <table>
<?php <?php
foreach ($this->userList as $user) { foreach ($this->userList as $user) {