www-thermferm/global.php

changeset 173
7259ee8778e9
parent 134
f05601490415
child 207
8d2ba4126519
equal deleted inserted replaced
172:f45c291c6331 173:7259ee8778e9
19 * You should have received a copy of the GNU General Public License 19 * You should have received a copy of the GNU General Public License
20 * along with ThermFerm; see the file COPYING. If not, write to the Free 20 * along with ThermFerm; see the file COPYING. If not, write to the Free
21 * Software Foundation, 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. 21 * Software Foundation, 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
22 *****************************************************************************/ 22 *****************************************************************************/
23 23
24 require_once('utilities.php');
24 25
25 $outstr = '<!DOCTYPE html>'.PHP_EOL; 26 $outstr = build_header("ThermFerm - Global Setup");
26 $outstr .= '<html>'.PHP_EOL;
27 $outstr .= ' <head>'.PHP_EOL;
28 $outstr .= ' <meta http-equiv="content-type" content="text/html; charset=utf-8" />'.PHP_EOL;
29 $outstr .= ' <title>ThermFerm monitor</title>'.PHP_EOL;
30 $outstr .= ' <link type="text/css" href="css/style.css" rel="stylesheet" media="all" />'.PHP_EOL;
31 $outstr .= ' </head>'.PHP_EOL;
32
33 $outstr .= ' <body class="default">'.PHP_EOL;
34 $outstr .= ' <div id="jqxWidget">'.PHP_EOL;
35 $outstr .= ' <div id="header">'.PHP_EOL;
36 $outstr .= ' <form action="maintenance.php" style="margin:30px; float:right">'.PHP_EOL;
37 $outstr .= ' <input type="submit" class="jqx-button" value="Maintenance Panel" />'.PHP_EOL;
38 $outstr .= ' </form>'.PHP_EOL;
39 $outstr .= ' </div> <!-- header -->'.PHP_EOL;
40 $outstr .= ' <div id="content">'.PHP_EOL;
41 $outstr .= ' <div id="errors">'.PHP_EOL; 27 $outstr .= ' <div id="errors">'.PHP_EOL;
42 $outstr .= ' </div> <!-- errors -->'.PHP_EOL; 28 $outstr .= ' </div> <!-- errors -->'.PHP_EOL;
43 $outstr .= ' <div id="etable">'.PHP_EOL; 29 $outstr .= ' <div id="etable">'.PHP_EOL;
44 30
45 $outstr .= ' </div> <!-- etable -->'.PHP_EOL; 31 $outstr .= ' </div> <!-- etable -->'.PHP_EOL;
46 $outstr .= ' </div> <!-- content -->'.PHP_EOL; 32 $outstr .= build_footer();
47 $outstr .= ' </div> <!-- content -->'.PHP_EOL;
48 $outstr .= ' </div> <!-- jqxWidget -->'.PHP_EOL;
49 $outstr .= ' </body>'.PHP_EOL;
50 $outstr .= '</html>'.PHP_EOL;
51 33
52 echo $outstr; 34 echo $outstr;
53 35

mercurial