Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OpnSense
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
OpnSense
Commits
998a5e01
Commit
998a5e01
authored
Mar 18, 2016
by
Ad Schellevis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(legacy) quick refactor of vpn_l2tp_users_edit.php
parent
b0779df9
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
53 additions
and
38 deletions
+53
-38
vpn_l2tp_users_edit.php
src/www/vpn_l2tp_users_edit.php
+53
-38
No files found.
src/www/vpn_l2tp_users_edit.php
View file @
998a5e01
...
...
@@ -49,26 +49,27 @@ require_once("system.inc");
require_once
(
"plugins.inc"
);
require_once
(
"plugins.inc.d/vpn.inc"
);
$referer
=
(
isset
(
$_SERVER
[
'HTTP_REFERER'
])
?
$_SERVER
[
'HTTP_REFERER'
]
:
'/vpn_l2tp_users.php'
);
if
(
empty
(
$config
[
'l2tp'
][
'user'
])
||
!
is_array
(
$config
[
'l2tp'
][
'user'
]))
{
$config
[
'l2tp'
][
'user'
]
=
array
();
}
$a_secret
=
&
$config
[
'l2tp'
][
'user'
];
if
(
is_numericint
(
$_GET
[
'id'
]))
{
if
(
$_SERVER
[
'REQUEST_METHOD'
]
===
'GET'
)
{
if
(
isset
(
$_GET
[
'id'
])
&&
!
empty
(
$a_secret
[
$_GET
[
'id'
]]))
{
$id
=
$_GET
[
'id'
];
}
if
(
isset
(
$_POST
[
'id'
])
&&
is_numericint
(
$_POST
[
'id'
]))
{
$id
=
$_POST
[
'id'
];
}
if
(
isset
(
$id
)
&&
$a_secret
[
$id
])
{
}
if
(
isset
(
$id
))
{
$pconfig
[
'usernamefld'
]
=
$a_secret
[
$id
][
'name'
];
$pconfig
[
'ip'
]
=
$a_secret
[
$id
][
'ip'
];
}
if
(
$_POST
)
{
}
else
{
$pconfig
[
'usernamefld'
]
=
null
;
$pconfig
[
'ip'
]
=
null
;
}
}
elseif
(
$_SERVER
[
'REQUEST_METHOD'
]
===
'POST'
)
{
if
(
isset
(
$_POST
[
'id'
])
&&
!
empty
(
$a_secret
[
$_POST
[
'id'
]]))
{
$id
=
$_POST
[
'id'
];
}
unset
(
$input_errors
);
$pconfig
=
$_POST
;
...
...
@@ -135,8 +136,9 @@ if ($_POST) {
}
}
$service_hook
=
'l2tpd'
;
$service_hook
=
'l2tpd'
;
legacy_html_escape_form_data
(
$pconfig
);
include
(
"head.inc"
);
?>
...
...
@@ -147,44 +149,57 @@ include("head.inc");
<div
class=
"container-fluid"
>
<div
class=
"row"
>
<?php
if
(
isset
(
$input_errors
)
&&
count
(
$input_errors
)
>
0
)
{
<?php
if
(
isset
(
$input_errors
)
&&
count
(
$input_errors
)
>
0
)
{
print_input_errors
(
$input_errors
);
}
?>
}
?>
<section
class=
"col-xs-12"
>
<div
class=
"tab-content content-box col-xs-12"
>
<form
method=
"post"
name=
"iform"
id=
"iform"
>
<div
class=
"table-responsive"
>
<table
class=
"table table-striped table-sort"
>
<table
class=
"table table-striped"
>
<tr>
<td
width=
"22%"
>
<strong>
<?=
gettext
(
"Edit User"
);
?>
</strong>
</td>
<td
width=
"78%"
align=
"right"
>
<small>
<?=
gettext
(
"full help"
);
?>
</small>
<i
class=
"fa fa-toggle-off text-danger"
style=
"cursor: pointer;"
id=
"show_all_help_page"
></i>
</td>
</tr>
<tr>
<td
width=
"22%"
valign=
"top"
class=
"vncellreq"
>
<?=
gettext
(
"Username"
);
?>
</td>
<td
width=
"78%"
class=
"vtable"
>
<input
name=
"usernamefld"
type=
"text"
class=
"form-control user"
id=
"usernamefld"
size=
"20"
value=
"
<?=
htmlspecialchars
(
$pconfig
[
'usernamefld'
])
;
?>
"
/>
<td
><i
class=
"fa fa-info-circle text-muted"
></i>
<?=
gettext
(
"Username"
);
?>
</td>
<td>
<input
name=
"usernamefld"
type=
"text"
value=
"
<?=
$pconfig
[
'usernamefld'
]
;
?>
"
/>
</td>
</tr>
<tr>
<td
width=
"22%"
valign=
"top"
class=
"vncellreq"
>
<?=
gettext
(
"Password"
);
?>
</td>
<td
width=
"78%"
class=
"vtable"
>
<input
name=
"passwordfld"
type=
"password"
class=
"form-control pwd"
id=
"passwordfld"
size=
"20"
/>
<br
/><input
name=
"password2"
type=
"password"
class=
"form-control pwd"
id=
"password2"
size=
"20"
/>
(
<?=
gettext
(
"confirmation"
);
?>
)
<?php
if
(
isset
(
$id
)
&&
$a_secret
[
$id
])
:?><
br
/>
<
p
class
="
text
-
muted
"><em><small><?=gettext("
If
you
want
to
change
the
users
password
,
enter
it
here
twice
.
");?></small></em></p>
<td><i
class=
"fa fa-info-circle text-muted"
></i>
<?=
gettext
(
"Password"
);
?>
</td>
<td>
<input
name=
"passwordfld"
type=
"password"
/><br
/>
<input
name=
"password2"
type=
"password"
/>
(
<?=
gettext
(
"confirmation"
);
?>
)
<?php
if
(
isset
(
$id
))
:?><
br
/>
<
div
class
="
text
-
muted
"><em><small><?=gettext("
If
you
want
to
change
the
users
password
,
enter
it
here
twice
.
");?></small></em></div>
<?php endif; ?>
</td>
</tr>
<tr>
<td width="
22
%
" valign="
top
" class="
vncell
"><?=gettext("
IP
address
");?></td>
<td width="
78
%
" class="
vtable
">
<input name="
ip
" type="
text
" class="
form
-
control
unknown
" id="
ip
" size="
20
" value="
<?=
htmlspecialchars
(
$pconfig
[
'ip'
]);
?>
" />
<p
class=
"text-muted"
><em><small>
<?=
gettext
(
"If you want the user to be assigned a specific IP address, enter it here."
);
?>
</small></em></p></td>
<td><a id="
help_for_ip
" href="
#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("IP address");?></td>
<
td
>
<
input
name
=
"ip"
type
=
"text"
value
=
"<?=
$pconfig['ip']
;?>"
/>
<
div
class
="
hidden
" for="
help_for_ip
">
<?=gettext("
If
you
want
the
user
to
be
assigned
a
specific
IP
address
,
enter
it
here
.
");?>
</div>
</td>
</tr>
<tr>
<td
width=
"22%"
valign=
"top"
>
</td>
<td
width=
"78%"
>
<td> </td>
<td>
<input id="
submit
" name="
Submit
" type="
submit
" class="
btn
btn
-
primary
" value="
<?=
gettext
(
'Save'
);
?>
" />
<input
type=
"button"
class=
"btn btn-default"
value=
"
<?=
gettext
(
"Cancel"
);
?>
"
onclick=
"window.location.href='
<?=
$referer
;
?>
'"
/>
<?php
if
(
isset
(
$id
)
&&
$a_secret
[
$id
]
)
:?>
<
input
name
=
"id"
type
=
"hidden"
value
=
"<?=
htmlspecialchars(
$id
)
;?>"
/>
<input
type=
"button"
class=
"btn btn-default"
value=
"
<?=
gettext
(
"Cancel"
);
?>
"
onclick=
"window.location.href='
<?=
(
isset
(
$_SERVER
[
'HTTP_REFERER'
])
?
$_SERVER
[
'HTTP_REFERER'
]
:
'/vpn_l2tp_users.php'
)
;
?>
'"
/>
<?php
if
(
isset
(
$id
))
:?>
<
input
name
=
"id"
type
=
"hidden"
value
=
"<?=
$id
;?>"
/>
<?
php
endif
;
?>
</td>
</tr>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment