mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
Round out those corners, baby!
This commit is contained in:
parent
ac018c3e1d
commit
ca994a4153
@ -172,14 +172,11 @@ if ($_POST) {
|
||||
$savemsg = get_std_save_message($retval);
|
||||
}
|
||||
}
|
||||
|
||||
$pgtitle = "Services: Captive Portal";
|
||||
include("head.inc");
|
||||
|
||||
?>
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title><?=gentitle("pfSense webGUI");?></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"); ?>
|
||||
@ -285,12 +282,14 @@ function enable_change(enable_change) {
|
||||
<form action="services_captiveportal.php" method="post" enctype="multipart/form-data" name="iform" id="iform">
|
||||
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
||||
<tr><td class="tabnavtbl">
|
||||
<ul id="tabnav">
|
||||
<li class="tabact">Captive portal</li>
|
||||
<li class="tabinact"><a href="services_captiveportal_mac.php">Pass-through MAC</a></li>
|
||||
<li class="tabinact"><a href="services_captiveportal_ip.php">Allowed IP addresses</a></li>
|
||||
<li class="tabinact"><a href="services_captiveportal_users.php">Users</a></li>
|
||||
</ul>
|
||||
<?php
|
||||
$tab_array = array();
|
||||
$tab_array[0] = array("Captive portal", true, "services_captiveportal.php");
|
||||
$tab_array[1] = array("Pass-through MAC", false, "services_captiveportal_mac.php");
|
||||
$tab_array[2] = array("Allowed IP addresses", false, "services_captiveportal_ip.php");
|
||||
$tab_array[3] = array("Users", false, "services_captiveportal_users.php");
|
||||
display_top_tabs($tab_array);
|
||||
?>
|
||||
</td></tr>
|
||||
<tr>
|
||||
<td class="tabcont">
|
||||
|
||||
@ -68,14 +68,11 @@ if ($_GET['act'] == "del") {
|
||||
exit;
|
||||
}
|
||||
}
|
||||
|
||||
$pgtitle = "Services: Captive Portal: Allowed IP's";
|
||||
include("head.inc");
|
||||
|
||||
?>
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title><?=gentitle("pfSense webGUI");?></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"); ?>
|
||||
@ -87,12 +84,14 @@ if ($_GET['act'] == "del") {
|
||||
<?php endif; ?>
|
||||
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
||||
<tr><td class="tabnavtbl">
|
||||
<ul id="tabnav">
|
||||
<li class="tabinact1"><a href="services_captiveportal.php">Captive portal</a></li>
|
||||
<li class="tabinact"><a href="services_captiveportal_mac.php">Pass-through MAC</a></li>
|
||||
<li class="tabact">Allowed IP addresses</li>
|
||||
<li class="tabinact"><a href="services_captiveportal_users.php">Users</a></li>
|
||||
</ul>
|
||||
<?php
|
||||
$tab_array = array();
|
||||
$tab_array[0] = array("Captive portal", false, "services_captiveportal.php");
|
||||
$tab_array[1] = array("Pass-through MAC", false, "services_captiveportal_mac.php");
|
||||
$tab_array[2] = array("Allowed IP addresses", true, "services_captiveportal_ip.php");
|
||||
$tab_array[3] = array("Users", false, "services_captiveportal_users.php");
|
||||
display_top_tabs($tab_array);
|
||||
?>
|
||||
</td></tr>
|
||||
<tr>
|
||||
<td class="tabcont">
|
||||
|
||||
@ -68,14 +68,11 @@ if ($_GET['act'] == "del") {
|
||||
exit;
|
||||
}
|
||||
}
|
||||
|
||||
$pgtitle = "Services: Captive Portal: Macs";
|
||||
include("head.inc");
|
||||
|
||||
?>
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title><?=gentitle("pfSense webGUI");?></title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
||||
<link href="gui.css" rel="stylesheet" type="text/css">
|
||||
</head>
|
||||
|
||||
<form method="post">
|
||||
|
||||
@ -89,12 +86,14 @@ if ($_GET['act'] == "del") {
|
||||
<?php endif; ?>
|
||||
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
||||
<tr><td class="tabnavtbl">
|
||||
<ul id="tabnav">
|
||||
<li class="tabinact1"><a href="services_captiveportal.php">Captive portal</a></li>
|
||||
<li class="tabact">Pass-through MAC</li>
|
||||
<li class="tabinact"><a href="services_captiveportal_ip.php">Allowed IP addresses</a></li>
|
||||
<li class="tabinact"><a href="services_captiveportal_users.php">Users</a></li>
|
||||
</ul>
|
||||
<?php
|
||||
$tab_array = array();
|
||||
$tab_array[0] = array("Captive portal", false, "services_captiveportal.php");
|
||||
$tab_array[1] = array("Pass-through MAC", true, "services_captiveportal_mac.php");
|
||||
$tab_array[2] = array("Allowed IP addresses", false, "services_captiveportal_ip.php");
|
||||
$tab_array[3] = array("Users", false, "services_captiveportal_users.php");
|
||||
display_top_tabs($tab_array);
|
||||
?>
|
||||
</td></tr>
|
||||
<tr>
|
||||
<td class="tabcont">
|
||||
|
||||
@ -136,14 +136,11 @@ if(is_array($config['users'])){
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
$pgtitle = "Services: Captive Portal: Users";
|
||||
include("head.inc");
|
||||
|
||||
?>
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title><?=gentitle("pfSense webGUI");?></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"); ?>
|
||||
@ -156,12 +153,14 @@ if(is_array($config['users'])){
|
||||
<?php if ($savemsg) print_info_box($savemsg); ?>
|
||||
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
||||
<tr><td>
|
||||
<ul id="tabnav">
|
||||
<li class="tabinact1"><a href="services_captiveportal.php">Captive portal</a></li>
|
||||
<li class="tabinact"><a href="services_captiveportal_mac.php">Pass-through MAC</a></li>
|
||||
<li class="tabinact"><a href="services_captiveportal_ip.php">Allowed IP addresses</a></li>
|
||||
<li class="tabact">Users</li>
|
||||
</ul>
|
||||
<?php
|
||||
$tab_array = array();
|
||||
$tab_array[0] = array("Captive portal", false, "services_captiveportal.php");
|
||||
$tab_array[1] = array("Pass-through MAC", false, "services_captiveportal_mac.php");
|
||||
$tab_array[2] = array("Allowed IP addresses", false, "services_captiveportal_ip.php");
|
||||
$tab_array[3] = array("Users", true, "services_captiveportal_users.php");
|
||||
display_top_tabs($tab_array);
|
||||
?>
|
||||
</td></tr>
|
||||
<tr>
|
||||
<td class="tabcont">
|
||||
|
||||
Loading…
Reference in New Issue
Block a user