mirror of
https://github.com/serghey-rodin/vesta.git
synced 2026-07-15 16:32:10 +02:00
218 lines
11 KiB
HTML
218 lines
11 KiB
HTML
<div class="l-center edit">
|
|
<div class="l-sort clearfix">
|
|
<div class="l-sort-toolbar clearfix float-left">
|
|
<span class="title edit"><b><?=__('Editing User')?></b></span>
|
|
<?php
|
|
if (!empty($_SESSION['error_msg'])) {
|
|
echo "<span class=\"vst-error\"> → ".htmlentities($_SESSION['error_msg'])."</span>";
|
|
} else {
|
|
if (!empty($_SESSION['ok_msg'])) {
|
|
echo "<span class=\"vst-ok\"> → ".$_SESSION['ok_msg']."</span>";
|
|
}
|
|
}
|
|
?>
|
|
</div>
|
|
|
|
</div>
|
|
<? display_error_block() ?>
|
|
</div>
|
|
|
|
<div class="l-separator"></div>
|
|
<!-- /.l-separator -->
|
|
|
|
<div class="l-center">
|
|
<?php
|
|
$back = $_SESSION['back'];
|
|
if (empty($back)) {
|
|
$back = "location.href='/list/user/'";
|
|
} else {
|
|
$back = "location.href='".$back."'";
|
|
}
|
|
?>
|
|
<form id="vstobjects" method="post" name="v_edit_user" class="<?=$v_status?>">
|
|
<input type="hidden" name="token" value="<?=$_SESSION['token']?>" />
|
|
<input type="hidden" name="save" value="save" />
|
|
<script type="text/javascript">
|
|
function randomString() {
|
|
var chars = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXTZabcdefghiklmnopqrstuvwxyz";
|
|
var string_length = 10;
|
|
var randomstring = '';
|
|
for (var i=0; i<string_length; i++) {
|
|
var rnum = Math.floor(Math.random() * chars.length);
|
|
randomstring += chars.substring(rnum,rnum+1);
|
|
}
|
|
document.v_edit_user.v_password.value = randomstring;
|
|
}
|
|
</script>
|
|
<table class='data'>
|
|
<tr class="data-add">
|
|
<td class="data-dotted">
|
|
<table class="data-col1">
|
|
<tr>
|
|
<td>
|
|
<a class="data-date"><?=translate_date($v_date)?></a><br>
|
|
<a class="data-date"><?=$v_time?></a>
|
|
</td>
|
|
</tr>
|
|
<tr><td class="data-<?php echo $v_status ?>"><b><?php echo __($v_status); ?></b></td></tr>
|
|
</table>
|
|
</td>
|
|
<td class="data-dotted">
|
|
<table class="data-col2">
|
|
<tr>
|
|
<td class="vst-text step-top">
|
|
<?php print __('Username');?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<input type="text" size="20" class="vst-input" name="v_user" <?php if (!empty($v_username)) echo "value=".htmlentities($v_username); ?> disabled> <input type="hidden" name="v_username" <?php if (!empty($v_username)) echo "value=".htmlentities($v_username); ?>>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="vst-text input-label">
|
|
<?php print __('Password');?> / <a href="javascript:randomString();" class="generate"><?php print __('generate');?></a>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<input type="text" size="20" class="vst-input password" name="v_password" <?php if (!empty($v_password)) echo "value=".htmlentities($v_password); ?>>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="vst-text input-label">
|
|
<?php print __('Email');?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<input type="text" size="20" class="vst-input" name="v_email" <?php if (!empty($v_email)) echo "value=".htmlentities($v_email); ?>>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="vst-text input-label">
|
|
<?php print __('Package');?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<select class="vst-list" name="v_package">
|
|
<?php
|
|
foreach ($packages as $key => $value) {
|
|
echo "\n\t\t\t\t\t\t\t\t\t<option value=\"".htmlentities($key)."\"";
|
|
$skey = "'".$key."'";
|
|
if (( $key == $v_package ) || ( $skey == $v_package)){
|
|
echo 'selected' ;
|
|
}
|
|
echo ">".htmlentities($key)."</option>\n";
|
|
}
|
|
?>
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="vst-text input-label">
|
|
<?php print __('Language');?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<select class="vst-list" name="v_language">
|
|
<?php
|
|
foreach ($languages as $key => $value) {
|
|
echo "\n\t\t\t\t\t\t\t\t\t<option value=\"".$value."\"";
|
|
$svalue = "'".$value."'";
|
|
if (( $value == $v_language ) || ( $svalue == $v_language)){
|
|
echo 'selected' ;
|
|
}
|
|
if (( $value == 'en' ) && (empty($v_language))){
|
|
echo 'selected' ;
|
|
}
|
|
echo ">".htmlentities($value)."</option>\n";
|
|
}
|
|
?>
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="vst-text input-label">
|
|
<?php print __('First Name');?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<input type="text" size="20" class="vst-input" name="v_fname" <?php if (!empty($v_fname)) echo "value=\"".htmlentities($v_fname)."\""; ?>>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="vst-text input-label">
|
|
<?php print __('Last Name');?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<input type="text" size="20" class="vst-input" name="v_lname" <?php if (!empty($v_lname)) echo "value=\"".htmlentities($v_lname)."\""; ?>>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="vst-text input-label">
|
|
<?php print __('SSH Access');?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<select class="vst-list" name="v_shell">
|
|
<?php
|
|
foreach ($shells as $key => $value) {
|
|
echo "\t\t\t\t<option value=\"".htmlentities($value)."\"";
|
|
$svalue = "'".$value."'";
|
|
if (( $value == $v_shell ) || ($svalue == $v_shell )){
|
|
echo 'selected' ;
|
|
}
|
|
echo ">".htmlentities($value)."</option>\n";
|
|
}
|
|
?>
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="vst-text input-label">
|
|
<?php print __('Default Name Servers');?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<input type="text" size="20" class="vst-input" name="v_ns1" <?php if (!empty($v_ns1)) echo "value=".htmlentities($v_ns1); ?>>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<input type="text" size="20" class="vst-input" name="v_ns2" <?php if (!empty($v_ns2)) echo "value=".htmlentities($v_ns2); ?>>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<input type="text" size="20" class="vst-input" name="v_ns3" <?php if (!empty($v_ns3)) echo "value=".htmlentities($v_ns3); ?>>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<input type="text" size="20" class="vst-input" name="v_ns4" <?php if (!empty($v_ns4)) echo "value=".htmlentities($v_ns4); ?>>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<table class="data-col2">
|
|
<tr>
|
|
<td class="step-top" width="116px">
|
|
<input type="submit" class="button" name="save" value="<?php print __('Save');?>">
|
|
</td>
|
|
<td class="step-top">
|
|
<input type="button" class="button cancel" value="<?php print __('Back');?>" onclick="<?php echo $back ?>">
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
</div> |