Skip to content

Commit

Permalink
cleaned <?, BODY tag updated with CSS
Browse files Browse the repository at this point in the history
  • Loading branch information
cfapress committed Mar 27, 2008
1 parent 9c8c5a7 commit d6a4af9
Show file tree
Hide file tree
Showing 7 changed files with 319 additions and 319 deletions.
4 changes: 2 additions & 2 deletions interface/usergroup/addrbook_edit.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ function rbvalue($rbname) {
<html>
<head>
<title><?php echo $userid ? "Edit" : "Add New" ?> Person</title>
<link rel=stylesheet href='<?php echo $css_header ?>' type='text/css'>
<link rel="stylesheet" href='<?php echo $css_header ?>' type='text/css'>

<style>
td { font-size:10pt; }
Expand Down Expand Up @@ -75,7 +75,7 @@ function rbvalue($rbname) {

</head>

<body <?echo $top_bg_line;?>>
<body class="body_top">
<?php
// If we are saving, then save and close the window.
//
Expand Down
12 changes: 6 additions & 6 deletions interface/usergroup/addrbook_list.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

<head>

<link rel=stylesheet href='<? echo $css_header ?>' type='text/css'>
<link rel="stylesheet" href='<?php echo $css_header ?>' type='text/css'>
<title><?php xl('Address Book','e'); ?></title>

<style>
Expand Down Expand Up @@ -91,7 +91,7 @@ function doedclick(userid) {

</head>

<body <?echo $top_bg_line;?>>
<body class="body_top">

<form method='post' action='addrbook_list.php'>

Expand All @@ -102,16 +102,16 @@ function doedclick(userid) {
</tr>
<tr class='search'> <!-- bgcolor='#ddddff' -->
<td>
<?xl('First Name:','e')?>
<?php xl('First Name:','e')?>
<input type='text' name='form_fname' size='10' value='<?php echo $form_fname; ?>'
class='inputtext' title='<?php xl("All or part of the first name","e") ?>' />&nbsp;
<?xl('Last Name:','e')?>
<?php xl('Last Name:','e')?>
<input type='text' name='form_lname' size='10' value='<?php echo $form_lname; ?>'
class='inputtext' title='<?php xl("All or part of the last name","e") ?>' />&nbsp;
<?xl('Specialty:','e')?>
<?php xl('Specialty:','e')?>
<input type='text' name='form_specialty' size='10' value='<?php echo $form_specialty; ?>'
class='inputtext' title='<?php xl("Any part of the desired specialty","e") ?>' />&nbsp;&nbsp;
<input type='submit' class='button' name='form_search' value='<?xl("Search","e")?>' />
<input type='submit' class='button' name='form_search' value='<?php xl("Search","e")?>' />
</td>
<td align='right'>
<input type='button' class='button' value='Add New' onclick='doedclick(0)' />
Expand Down
4 changes: 2 additions & 2 deletions interface/usergroup/adminacl.php
Original file line number Diff line number Diff line change
Expand Up @@ -478,7 +478,7 @@ function generic_click(cthis) {
});
</script>

<link rel=stylesheet href="<?echo $css_header;?>" type="text/css">
<link rel="stylesheet" href="<?php echo $css_header;?>" type="text/css">
<style type="text/css">
body {
padding: 5pt 15pt 5pt 5pt;
Expand Down Expand Up @@ -507,7 +507,7 @@ function generic_click(cthis) {
</style>
</head>

<body<?php echo $top_bg_line;?>>
<body class="body_top">
<span class='title'><?php xl('Access Control List Administration','e'); ?></span>
<br><br>
<div id='membership_edit'>
Expand Down
6 changes: 3 additions & 3 deletions interface/usergroup/facility_admin.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,16 +38,16 @@
<html>
<head>

<link rel=stylesheet href="<?echo $css_header;?>" type="text/css">
<link rel="stylesheet" href="<?php echo $css_header;?>" type="text/css">

</head>
<body <?php echo $top_bg_line; ?> topmargin=0 rightmargin=0 leftmargin=2 bottommargin=0 marginwidth=2 marginheight=0>
<body class="body_top">

<span class="title"><?php xl('Edit Facility Information','e'); ?></span>

<form name='facility' method='post' action="facility_admin.php">
<input type=hidden name=mode value="facility">
<input type=hidden name=fid value="<?echo $my_fid;?>">
<input type=hidden name=fid value="<?php echo $my_fid;?>">
<?php $facility = sqlQuery("select * from facility where id='$my_fid'"); ?>
<br><br>
<table border=0 cellpadding=0 cellspacing=0>
Expand Down
Loading

0 comments on commit d6a4af9

Please sign in to comment.