Revision 995df6c3
Added by Stephen Beaver almost 10 years ago
src/etc/inc/authgui.inc | ||
---|---|---|
1 | 1 |
<?php |
2 | 2 |
/* $Id$ */ |
3 | 3 |
/* |
4 |
Copyright (C) 2007, 2008 Scott Ullrich <sullrich@gmail.com> |
|
5 |
All rights reserved. |
|
6 |
|
|
7 |
Copyright (C) 2005-2006 Bill Marquette <bill.marquette@gmail.com> |
|
8 |
All rights reserved. |
|
9 |
|
|
10 |
Copyright (C) 2006 Paul Taylor <paultaylor@winn-dixie.com>. |
|
11 |
All rights reserved. |
|
12 |
|
|
13 |
Copyright (C) 2003-2006 Manuel Kasper <mk@neon1.net>. |
|
14 |
All rights reserved. |
|
15 |
|
|
16 |
Redistribution and use in source and binary forms, with or without |
|
17 |
modification, are permitted provided that the following conditions are met: |
|
18 |
|
|
19 |
1. Redistributions of source code must retain the above copyright notice, |
|
20 |
this list of conditions and the following disclaimer. |
|
21 |
|
|
22 |
2. Redistributions in binary form must reproduce the above copyright |
|
23 |
notice, this list of conditions and the following disclaimer in the |
|
24 |
documentation and/or other materials provided with the distribution. |
|
25 |
|
|
26 |
THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, |
|
27 |
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY |
|
28 |
AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
|
29 |
AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, |
|
30 |
OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
|
31 |
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
|
32 |
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
|
33 |
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
|
34 |
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
|
35 |
POSSIBILITY OF SUCH DAMAGE. |
|
36 |
|
|
37 | 4 |
pfSense_MODULE: authgui |
38 | 5 |
*/ |
39 |
|
|
6 |
/* ==================================================================== |
|
7 |
* Copyright (c) 2004-2015 Electric Sheep Fencing, LLC. All rights reserved. |
|
8 |
* Copyright (c) 2004, 2005 Scott Ullrich |
|
9 |
* Copyright (c) 2005-2006 Bill Marquette <bill.marquette@gmail.com> |
|
10 |
* Copyright (c) 2006 Paul Taylor <paultaylor@winn-dixie.com>. |
|
11 |
* Copyright (c) 2003-2006 Manuel Kasper <mk@neon1.net>. |
|
12 |
* |
|
13 |
* Redistribution and use in source and binary forms, with or without modification, |
|
14 |
* are permitted provided that the following conditions are met: |
|
15 |
* |
|
16 |
* 1. Redistributions of source code must retain the above copyright notice, |
|
17 |
* this list of conditions and the following disclaimer. |
|
18 |
* |
|
19 |
* 2. Redistributions in binary form must reproduce the above copyright |
|
20 |
* notice, this list of conditions and the following disclaimer in |
|
21 |
* the documentation and/or other materials provided with the |
|
22 |
* distribution. |
|
23 |
* |
|
24 |
* 3. All advertising materials mentioning features or use of this software |
|
25 |
* must display the following acknowledgment: |
|
26 |
* "This product includes software developed by the pfSense Project |
|
27 |
* for use in the pfSense software distribution. (http://www.pfsense.org/). |
|
28 |
* |
|
29 |
* 4. The names "pfSense" and "pfSense Project" must not be used to |
|
30 |
* endorse or promote products derived from this software without |
|
31 |
* prior written permission. For written permission, please contact |
|
32 |
* coreteam@pfsense.org. |
|
33 |
* |
|
34 |
* 5. Products derived from this software may not be called "pfSense" |
|
35 |
* nor may "pfSense" appear in their names without prior written |
|
36 |
* permission of the Electric Sheep Fencing, LLC. |
|
37 |
* |
|
38 |
* 6. Redistributions of any form whatsoever must retain the following |
|
39 |
* acknowledgment: |
|
40 |
* |
|
41 |
* "This product includes software developed by the pfSense Project |
|
42 |
* for use in the pfSense software distribution (http://www.pfsense.org/). |
|
43 |
* |
|
44 |
* THIS SOFTWARE IS PROVIDED BY THE pfSense PROJECT ``AS IS'' AND ANY |
|
45 |
* EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
|
46 |
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
|
47 |
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE pfSense PROJECT OR |
|
48 |
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
|
49 |
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
|
50 |
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
|
51 |
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
|
52 |
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, |
|
53 |
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
|
54 |
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED |
|
55 |
* OF THE POSSIBILITY OF SUCH DAMAGE. |
|
56 |
* |
|
57 |
* ==================================================================== |
|
58 |
* |
|
59 |
*/ |
|
40 | 60 |
include_once("auth.inc"); |
41 | 61 |
include_once("priv.inc"); |
42 | 62 |
if (!function_exists('platform_booting')) { |
... | ... | |
103 | 123 |
*/ |
104 | 124 |
function display_error_form($http_code, $desc) { |
105 | 125 |
global $config, $g; |
106 |
$g['theme'] = get_current_theme(); |
|
126 |
|
|
107 | 127 |
if (isAjax()) { |
108 | 128 |
printf(gettext('Error: %1$s Description: %2$s'), $http_code, $desc); |
109 | 129 |
return; |
... | ... | |
136 | 156 |
function display_login_form() { |
137 | 157 |
require_once("globals.inc"); |
138 | 158 |
global $config, $g; |
139 |
$g['theme'] = get_current_theme(); |
|
140 | 159 |
|
141 | 160 |
unset($input_errors); |
142 | 161 |
|
Also available in: Unified diff
Completed #5333