diff options
author | Bill Marquette <billm@pfsense.org> | 2005-07-03 16:15:36 +0000 |
---|---|---|
committer | Bill Marquette <billm@pfsense.org> | 2005-07-03 16:15:36 +0000 |
commit | f726d710a8299b194567b32406fabcbec1814f92 (patch) | |
tree | 6fbcf75cdaae9bf9a42eef958eb2073ad73cf6e5 /usr/local/www/halt.php | |
parent | a1357fe0abec61cfd74e5e22dc8f4634005505f1 (diff) | |
download | pfsense-f726d710a8299b194567b32406fabcbec1814f92.zip pfsense-f726d710a8299b194567b32406fabcbec1814f92.tar.gz |
Use head.inc and standardize on $pgtitle
Diffstat (limited to 'usr/local/www/halt.php')
-rwxr-xr-x | usr/local/www/halt.php | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/usr/local/www/halt.php b/usr/local/www/halt.php index a22f6c1..0ffa44c 100755 --- a/usr/local/www/halt.php +++ b/usr/local/www/halt.php @@ -44,18 +44,14 @@ if ($_POST) { exit; } } + +$pgtitle = "Diagnostics: Halt system"; +include('head.inc'); ?> -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> -<html> -<head> -<title><?=gentitle("Halt system");?></title> -<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> -<link href="gui.css" rel="stylesheet" type="text/css"> -</head> <body link="#0000CC" vlink="#0000CC" alink="#0000CC"> <?php include("fbegin.inc"); ?> -<p class="pgtitle">Halt system</p> +<p class="pgtitle"><?=$pgtitle?></p> <?php if ($rebootmsg): echo print_info_box($rebootmsg); else: ?> <form action="halt.php" method="post"> <p><strong>Are you sure you want to halt the system?</strong></p> |