diff --git a/web/edit/cron/index.php b/web/edit/cron/index.php index 646f7af6..d35f2725 100644 --- a/web/edit/cron/index.php +++ b/web/edit/cron/index.php @@ -71,7 +71,7 @@ top_panel($user,$TAB); $v_cmd = $_POST['v_cmd']; } if (empty($_SESSION['error_msg'])) { - $_SESSION['ok_msg'] = "OK: changes has been saved."; + $_SESSION['ok_msg'] = _("OK: changes has been saved."); } } } diff --git a/web/edit/db/index.php b/web/edit/db/index.php index a62cd540..4ecbe187 100644 --- a/web/edit/db/index.php +++ b/web/edit/db/index.php @@ -65,7 +65,7 @@ top_panel($user,$TAB); unset($output); } if (empty($_SESSION['error_msg'])) { - $_SESSION['ok_msg'] = "OK: changes has been saved."; + $_SESSION['ok_msg'] = _('OK: changes has been saved.'); } } } diff --git a/web/edit/dns/index.php b/web/edit/dns/index.php index b0a61908..5d519135 100644 --- a/web/edit/dns/index.php +++ b/web/edit/dns/index.php @@ -137,7 +137,7 @@ top_panel($user,$TAB); } if (empty($_SESSION['error_msg'])) { - $_SESSION['ok_msg'] = "OK: changes has been saved."; + $_SESSION['ok_msg'] = _('OK: changes has been saved.'); } } @@ -196,7 +196,7 @@ top_panel($user,$TAB); } if (empty($_SESSION['error_msg'])) { - $_SESSION['ok_msg'] = "OK: changes has been saved."; + $_SESSION['ok_msg'] = _('OK: changes has been saved.'); } } diff --git a/web/edit/ip/index.php b/web/edit/ip/index.php index bdc0b370..eb06a1a6 100644 --- a/web/edit/ip/index.php +++ b/web/edit/ip/index.php @@ -105,7 +105,7 @@ if ($_SESSION['user'] == 'admin') { } if (empty($_SESSION['error_msg'])) { - $_SESSION['ok_msg'] = "OK: changes has been saved."; + $_SESSION['ok_msg'] = _('OK: changes has been saved.'); } } } diff --git a/web/edit/mail/index.php b/web/edit/mail/index.php index cab7a11e..bf38564f 100644 --- a/web/edit/mail/index.php +++ b/web/edit/mail/index.php @@ -100,7 +100,7 @@ top_panel($user,$TAB); } if (empty($_SESSION['error_msg'])) { - $_SESSION['ok_msg'] = "OK: changes has been saved."; + $_SESSION['ok_msg'] = _('OK: changes has been saved.'); } // DKIM @@ -162,7 +162,7 @@ top_panel($user,$TAB); } if (empty($_SESSION['error_msg'])) { - $_SESSION['ok_msg'] = "OK: changes has been saved."; + $_SESSION['ok_msg'] = _('OK: changes has been saved.'); } } include($_SERVER['DOCUMENT_ROOT'].'/templates/admin/edit_mail.html'); @@ -356,7 +356,7 @@ top_panel($user,$TAB); if (empty($_SESSION['error_msg'])) { - $_SESSION['ok_msg'] = "OK: changes has been saved."; + $_SESSION['ok_msg'] = _('OK: changes has been saved.'); } } diff --git a/web/edit/package/index.php b/web/edit/package/index.php index a5ea6d02..ed29f15b 100644 --- a/web/edit/package/index.php +++ b/web/edit/package/index.php @@ -70,22 +70,22 @@ if ($_SESSION['user'] == 'admin') { // Action if (!empty($_POST['save'])) { // Check input - if (empty($_POST['v_package'])) $errors[] = 'package'; - if (empty($_POST['v_template'])) $errors[] = 'template'; - if (empty($_POST['v_shell'])) $errrors[] = 'shell'; - if (!isset($_POST['v_web_domains'])) $errors[] = 'web domains'; - if (!isset($_POST['v_web_aliases'])) $errors[] = 'web aliases'; - if (!isset($_POST['v_dns_domains'])) $errors[] = 'dns domains'; - if (!isset($_POST['v_dns_records'])) $errors[] = 'dns records'; - if (!isset($_POST['v_mail_domains'])) $errors[] = 'mail domains'; - if (!isset($_POST['v_mail_accounts'])) $errors[] = 'mail accounts'; - if (!isset($_POST['v_databases'])) $errors[] = 'databases'; - if (!isset($_POST['v_cron_jobs'])) $errors[] = 'cron jobs'; - if (!isset($_POST['v_backups'])) $errors[] = 'backups'; - if (!isset($_POST['v_disk_quota'])) $errors[] = 'quota'; - if (!isset($_POST['v_bandwidth'])) $errors[] = 'bandwidth'; - if (empty($_POST['v_ns1'])) $errors[] = 'ns1'; - if (empty($_POST['v_ns2'])) $errors[] = 'ns2'; + if (empty($_POST['v_package'])) $errors[] = _('package'); + if (empty($_POST['v_template'])) $errors[] = _('template'); + if (empty($_POST['v_shell'])) $errrors[] = _('shell'); + if (!isset($_POST['v_web_domains'])) $errors[] = _('web domains'); + if (!isset($_POST['v_web_aliases'])) $errors[] = _('web aliases'); + if (!isset($_POST['v_dns_domains'])) $errors[] = _('dns domains'); + if (!isset($_POST['v_dns_records'])) $errors[] = _('dns records'); + if (!isset($_POST['v_mail_domains'])) $errors[] = _('mail domains'); + if (!isset($_POST['v_mail_accounts'])) $errors[] = _('mail accounts'); + if (!isset($_POST['v_databases'])) $errors[] = _('databases'); + if (!isset($_POST['v_cron_jobs'])) $errors[] = _('cron jobs'); + if (!isset($_POST['v_backups'])) $errors[] = _('backups'); + if (!isset($_POST['v_disk_quota'])) $errors[] = _('quota'); + if (!isset($_POST['v_bandwidth'])) $errors[] = _('bandwidth'); + if (empty($_POST['v_ns1'])) $errors[] = _('ns1'); + if (empty($_POST['v_ns2'])) $errors[] = _('ns2'); // Protect input $v_package = escapeshellarg($_POST['v_package']); @@ -175,7 +175,7 @@ if ($_SESSION['user'] == 'admin') { } if (empty($_SESSION['error_msg'])) { - $_SESSION['ok_msg'] = "OK: changes has been saved."; + $_SESSION['ok_msg'] = _('OK: changes has been saved.'); } } } diff --git a/web/edit/user/index.php b/web/edit/user/index.php index 8411a551..92edcf42 100644 --- a/web/edit/user/index.php +++ b/web/edit/user/index.php @@ -170,7 +170,7 @@ if ($_SESSION['user'] == 'admin') { } if (empty($_SESSION['error_msg'])) { - $_SESSION['ok_msg'] = "OK: changes has been saved."; + $_SESSION['ok_msg'] = _('OK: changes has been saved.'); } } include($_SERVER['DOCUMENT_ROOT'].'/templates/admin/edit_user.html'); @@ -263,7 +263,7 @@ if ($_SESSION['user'] == 'admin') { } if (empty($_SESSION['error_msg'])) { - $_SESSION['ok_msg'] = "OK: changes has been saved."; + $_SESSION['ok_msg'] = _('OK: changes has been saved.'); } } include($_SERVER['DOCUMENT_ROOT'].'/templates/user/edit_user.html'); diff --git a/web/edit/web/index.php b/web/edit/web/index.php index ace532dc..3116d876 100644 --- a/web/edit/web/index.php +++ b/web/edit/web/index.php @@ -417,8 +417,8 @@ top_panel($user,$TAB); $v_stats_password = ''; } if ((empty($v_stats_user)) && (!empty($_POST['v_stats_auth'])) && (empty($_SESSION['error_msg']))) { - if (empty($_POST['v_stats_user'])) $errors[] = 'stats username'; - if (empty($_POST['v_stats_password'])) $errors[] = 'stats password'; + if (empty($_POST['v_stats_user'])) $errors[] = _('stats username'); + if (empty($_POST['v_stats_password'])) $errors[] = _('stats password'); if (!empty($errors[0])) { foreach ($errors as $i => $error) { if ( $i == 0 ) { @@ -442,8 +442,8 @@ top_panel($user,$TAB); } } if ((!empty($v_stats_user)) && (!empty($_POST['v_stats_auth'])) && (empty($_SESSION['error_msg']))) { - if (empty($_POST['v_stats_user'])) $errors[] = 'stats user'; - if (empty($_POST['v_stats_password'])) $errors[] = 'stats password'; + if (empty($_POST['v_stats_user'])) $errors[] = _('stats user'); + if (empty($_POST['v_stats_password'])) $errors[] = _('stats password'); if (!empty($errors[0])) { foreach ($errors as $i => $error) { if ( $i == 0 ) { @@ -482,8 +482,8 @@ top_panel($user,$TAB); $v_ftp_password = ''; } if ((!empty($v_ftp_user)) && (!empty($_POST['v_ftp'])) && (empty($_SESSION['error_msg']))) { - if (empty($_POST['v_ftp_user'])) $errors[] = 'ftp user'; - if (empty($_POST['v_ftp_password'])) $errors[] = 'ftp password'; + if (empty($_POST['v_ftp_user'])) $errors[] = _('ftp user'); + if (empty($_POST['v_ftp_password'])) $errors[] = _('ftp user password'); if (!empty($errors[0])) { foreach ($errors as $i => $error) { if ( $i == 0 ) { @@ -512,8 +512,8 @@ top_panel($user,$TAB); if ((empty($v_ftp_user)) && (!empty($_POST['v_ftp'])) && (empty($_SESSION['error_msg']))) { if ((!empty($_POST['v_ftp_email'])) && (!filter_var($_POST['v_ftp_email'], FILTER_VALIDATE_EMAIL))) $_SESSION['error_msg'] = _('Please enter valid email address.'); - if (empty($_POST['v_ftp_user'])) $errors[] = 'ftp username'; - if (empty($_POST['v_ftp_password'])) $errors[] = 'ftp password'; + if (empty($_POST['v_ftp_user'])) $errors[] = 'ftp user'; + if (empty($_POST['v_ftp_password'])) $errors[] = 'ftp user password'; if (!empty($errors[0])) { foreach ($errors as $i => $error) { if ( $i == 0 ) { @@ -535,14 +535,10 @@ top_panel($user,$TAB); } else { if (!empty($_POST['v_ftp_email'])) { $to = $_POST['v_ftp_email']; - $subject = "FTP login credentials"; + $subject = _("FTP login credentials"); $hostname = exec('hostname'); - $from = "Vesta Control Panel "; - $mailtext .= "Your ftp account has been created successfully and is ready to use.\n\n"; - $mailtext .= "hostname: ".$_GET['domain']."\n"; - $mailtext .= "username: ".$user."_".$_POST['v_ftp_user']."\n"; - $mailtext .= "password: ".$_POST['v_ftp_password']."\n\n"; - $mailtext .= "--\nVesta Control Panel\n"; + $from = _('MAIL_FROM',$hostname); + $mailtext .= _('FTP_ACCOUNT_READY',$_GET['domain'],$user,$_POST['v_ftp_user'],$_POST['v_ftp_password']); send_email($to, $subject, $mailtext, $from); unset($v_ftp_email); } @@ -574,7 +570,7 @@ top_panel($user,$TAB); } if (empty($_SESSION['error_msg'])) { - $_SESSION['ok_msg'] = "OK: changes has been saved."; + $_SESSION['ok_msg'] = _('OK: changes has been saved.'); } } diff --git a/web/error/index.html b/web/error/index.html index 657e79e3..b7a29124 100644 --- a/web/error/index.html +++ b/web/error/index.html @@ -1,26 +1,26 @@ - - - 505 — internal error - - - - - - -

An internal error occurred

- -
- Try start again from home page or go back to previous page. -
- - + + + <?php print _('505');?> + + + + + + +

+ +
+ +
+ + diff --git a/web/inc/i18n/ru.php b/web/inc/i18n/ru.php index a2f6a134..5f1fb08e 100644 --- a/web/inc/i18n/ru.php +++ b/web/inc/i18n/ru.php @@ -72,11 +72,78 @@ $LANG = array( 'ssl certificate'=>'SSL сертификат', 'ssl key'=>'ключ SSL сертификата', 'stats user password'=>'пароль для доступа к статистике', + 'stats username'=>'имя пользователя статистики', + 'stats password'=>'пароль пользователя статистики', 'ftp user password'=>'пароль для доступа к FTP', + 'ftp user'=>'пользователь FTP', 'FTP login credentials'=>'Данные для доступа к FTP', 'FTP_ACCOUNT_READY'=>"Ваш FTP аккаунт успешно создан и готов к использованию.\n\nХост: %s\nИмя пользователя: %s_%s\nПароль: %s\n\n--\nПанель управления Vesta\n", 'HOSTING_DOMAIN_CREATED_OK'=>'Успешно: хостинг для домена %s был успешно создан.', - - + 'OK: changes has been saved.'=>'Успешно: изменения были сохранены.', + 'FTP login credentials'=>'Данные для доступа к FTP', + '505'=>'505 — внутренняя ошибка', + 'An internal error occurred'=>'Произошла внутренняя ошибка', + 'GO_BACK_LINK'=>'Попробуйте вернуться на главную страницу или вернитесь на предыдущую страницу', + 'ERROR: Invalid username or password'=>'Ошибка: Неверный логин или пароль', + 'ERROR: Invalid username or code'=>'Ошибка: Неверный логин или код сброса пароля', + 'MAIL_RESET_SUBJECT'=>'Password Reset at %s', + 'PASSWORD_RESET_REQUEST'=>"Вы недавно запросили смену пароля.\nЧтобы произвести смену пароля, пройдите по этой ссылки:\nhttps://%s/reset/?action=confirm&user=%s&code=%s\n\nВы также можете пойти по ссылке https://%s/reset/?action=code&user=%s и ввести следующий код для сброса пароля:\n%s\n\nЕсли вы не создавали запрос на сброс пароля, пожалуйста проигнорируйте это письмо и примите наши извиниения.\n\n--\nПанель управления Vesta\n", + 'ERROR: Passwords not match'=>'Ошибка: Пароли не совпадают', + 'Adding Cron Job'=>'Добавление cron задания', + 'Minute'=>'Минута', + 'Day'=>'День', + 'Month'=>'Месяц', + 'Day of week'=>'День недели', + 'Command'=>'Команда', + 'Add'=>'Добавить', + 'Back'=>'Назад', + 'Adding database'=>'Добавление базы данных', + 'DB_PREFIX_WILL_BE_ADDED'=>'Префикс %s будет автоматически добавлен к БД и пользователю БД', + 'Database'=>'База данных', + 'Username'=>'Имя пользователя', + 'Password'=>'Пароль', + 'generate'=>'сгенерировать', + 'Type'=>'Тип', + 'Charset'=>'Кодировка', + 'Adding DNS Domain'=>'Добавление доменного имени', + 'Domain'=>'Домен', + 'IP-Address'=>'IP-адрес', + 'Advanced options'=>'Расширенные опции', + 'Template'=>'Шаблон', + 'Expiration date'=>'Дата окончания делегирования', + 'Name servers'=>'Сервера имен', + 'Powered by Vesta Control Panel'=>'Работает на Панели Управления Vesta', + 'Vesta Control Panel'=>'Панель Управления Vesta', + 'Translation by ZonD80'=>'Перевод ZonD80', + 'Forgot Password?'=>'Забыли пароль?', + 'Log in'=>'Войти', + 'Log out'=>'Выйти', + "RESET_NOTICE"=>"Для сброса пароля введите ваше имя пользователя, и мы расскажем, что нужно делать дальше.", + 'Submit'=>'Отправить', + 'RESET_CODE_SENT'=>'Код сброса пароля выслан на ваш email
Пожалуйста, введите код в располженное ниже поле для продолжения', + 'Confirm'=>'Подтвердить', + 'New Password'=>'Новый Пароль', + 'Confirm Password'=>'Подтверждение Пароля', + 'Reset'=>'Сбросить', + 'Statistics'=>'Статистика', + 'History Log'=>'История изменений', + 'Vesta logo'=>'Логотип Vesta', + 'USER'=>'ПОЛЬЗОВАТЕЛИ', + 'users'=>'пользователи', + 'suspended'=>'заблокировано', + 'WEB'=>'ХОСТИНГ', + 'domains'=>'домены', + 'aliases'=>'редиректы', + 'DNS'=>'DNS', + 'records'=>'записи', + 'MAIL'=>'ПОЧТА', + 'DB'=>'БД', + 'CRON'=>'CRON', + 'BACKUP'=>'БЭКАПЫ', + 'Packages'=>'Пакеты', + 'IP Addresses'=>'IP адреса', + 'RRD Graphics'=>'Графики', + 'jobs'=>'Задания', + 'Reset Code'=>'Код сброса' ); \ No newline at end of file diff --git a/web/inc/main.php b/web/inc/main.php index c9c2f440..d9fe8390 100644 --- a/web/inc/main.php +++ b/web/inc/main.php @@ -21,7 +21,7 @@ function _() { } // Check user session -if (!isset($_SESSION['user'])) { +if (!isset($_SESSION['user'])&&!defined('NO_AUTH_REQUIRED')) { $_SESSION['request_uri'] = $_SERVER['REQUEST_URI']; header("Location: /login/"); exit; diff --git a/web/login/index.php b/web/login/index.php index d456da8a..941e757a 100644 --- a/web/login/index.php +++ b/web/login/index.php @@ -1,46 +1,51 @@ - 0 ) { - $ERROR = "ERROR: Invalid username or password"; - } else { - $_SESSION['user'] = $_POST['user']; - if ($_POST['user'] == 'root') $_SESSION['user'] = 'admin'; - if (!empty($_SESSION['request_uri'])) { - header("Location: ".$_SESSION['request_uri']); - unset($_SESSION['request_uri']); - exit; - } else { - header("Location: /"); - exit; - } - } - } - require_once '../templates/header.html'; - require_once '../templates/login.html'; -} -?> + 0 ) { + $ERROR = ""._('ERROR: Invalid username or password').""; + } else { + $_SESSION['user'] = $_POST['user']; + if ($_POST['user'] == 'root') $_SESSION['user'] = 'admin'; + if (!empty($_SESSION['request_uri'])) { + header("Location: ".$_SESSION['request_uri']); + unset($_SESSION['request_uri']); + exit; + } else { + header("Location: /"); + exit; + } + } + } + require_once '../templates/header.html'; + require_once '../templates/login.html'; +} +?> diff --git a/web/logout/index.php b/web/logout/index.php index 5cbfd209..13920652 100644 --- a/web/logout/index.php +++ b/web/logout/index.php @@ -1,12 +1,13 @@ - + diff --git a/web/reset/index.php b/web/reset/index.php index 02430f52..158b939c 100644 --- a/web/reset/index.php +++ b/web/reset/index.php @@ -1,100 +1,83 @@ -'; - $boundary='--' . md5( uniqid("myboundary") ); - $priorities = array( '1 (Highest)', '2 (High)', '3 (Normal)', '4 (Low)', '5 (Lowest)' ); - $priority = $priorities[2]; - $ctencoding = "8bit"; - $sep = chr(13) . chr(10); - $disposition = "inline"; - $subject = "=?$charset?B?".base64_encode($subject)."?="; - $header.="From: $from \nX-Priority: $priority\nCC: $cc\n"; - $header.="Mime-Version: 1.0\nContent-Type: text/plain; charset=$charset \n"; - $header.="Content-Transfer-Encoding: $ctencoding\nX-Mailer: Php/libMailv1.3\n"; - $message .= $mailtext; - mail($to, $subject, $message, $header); -} - -if ((!empty($_POST['user'])) && (empty($_POST['code']))) { - $v_user = escapeshellarg($_POST['user']); - $user = $_POST['user']; - $cmd="/usr/bin/sudo /usr/local/vesta/bin/v-list-user"; - exec ($cmd." ".$v_user." json", $output, $return_var); - if ( $return_var == 0 ) { - $data = json_decode(implode('', $output), true); - $rkey = $data[$user]['RKEY']; - $fname = $data[$user]['FNAME']; - $lname = $data[$user]['LNAME']; - $contact = $data[$user]['CONTACT']; - $to = $data[$user]['CONTACT']; - $subject = 'Password Reset '.date("Y-m-d H:i:s"); - $hostname = exec('hostname'); - $from = "Vesta Control Panel "; - if (!empty($fname)) { - $mailtext = "Hello ".$fname." ".$lname.",\n"; - } else { - $mailtext = "Hello,\n"; - } - $mailtext .= "You recently asked to reset your control panel password. "; - $mailtext .= "To complete your request, please follow this link:\n"; - $mailtext .= "https://".$_SERVER['HTTP_HOST']."/reset/?action=confirm&user=".$user."&code=".$rkey."\n\n"; - $mailtext .= "Alternately, you may go to https://".$_SERVER['HTTP_HOST']."/reset/?action=code&user=".$user." and enter the following password reset code:\n"; - $mailtext .= $rkey."\n\n"; - $mailtext .= "If you did not request a new password please ignore this letter and accept our apologies — we didn't intend to disturb you.\n\n"; - $mailtext .= "--\nVesta Control Panel\n"; - if (!empty($rkey)) send_email($to, $subject, $mailtext, $from); - unset($output); - } - - header("Location: /reset/?action=code&user=".$_POST['user']); - exit; -} - -if ((!empty($_POST['user'])) && (!empty($_POST['code'])) && (!empty($_POST['password'])) ) { - if ( $_POST['password'] == $_POST['password_confirm'] ) { - $v_user = escapeshellarg($_POST['user']); - $user = $_POST['user']; - $v_password = escapeshellarg($_POST['password']); - $cmd="/usr/bin/sudo /usr/local/vesta/bin/v-list-user"; - exec ($cmd." ".$v_user." json", $output, $return_var); - if ( $return_var == 0 ) { - $data = json_decode(implode('', $output), true); - $rkey = $data[$user]['RKEY']; - if ($rkey == $_POST['code']) { - $cmd="/usr/bin/sudo /usr/local/vesta/bin/v-change-user-password"; - exec ($cmd." ".$v_user." ".$v_password, $output, $return_var); - if ( $return_var > 0 ) { - $ERROR = "ERROR: Internal error"; - } else { - $_SESSION['user'] = $_POST['user']; - header("Location: /"); - exit; - } - } else { - $ERROR = "ERROR: Invalid username or code"; - } - } else { - $ERROR = "ERROR: Invalid username or code"; - } - } else { - $ERROR = "ERROR: Passwords not match"; - } -} - -require_once '../templates/header.html'; -if (empty($_GET['action'])) { - require_once '../templates/reset_1.html'; -} else { - if ($_GET['action'] == 'code' ) { - require_once '../templates/reset_2.html'; - } - if (($_GET['action'] == 'confirm' ) && (!empty($_GET['code']))) { - require_once '../templates/reset_3.html'; - } -} - -?> + 0 ) { + $ERROR = ""._('An internal error occurred').""; + } else { + $_SESSION['user'] = $_POST['user']; + header("Location: /"); + exit; + } + } else { + $ERROR = ""._('ERROR: Invalid username or code').""; + } + } else { + $ERROR = ""._('ERROR: Invalid username or code').""; + } + } else { + $ERROR = ""._('ERROR: Passwords not match').""; + } +} + +require_once '../templates/header.html'; +if (empty($_GET['action'])) { + require_once '../templates/reset_1.html'; +} else { + if ($_GET['action'] == 'code' ) { + require_once '../templates/reset_2.html'; + } + if (($_GET['action'] == 'confirm' ) && (!empty($_GET['code']))) { + require_once '../templates/reset_3.html'; + } +} + +?> diff --git a/web/templates/admin/add_cron.html b/web/templates/admin/add_cron.html index e7c23713..05287e27 100644 --- a/web/templates/admin/add_cron.html +++ b/web/templates/admin/add_cron.html @@ -1,115 +1,115 @@ - - - - - - - - - - - - -
- - - - - -
- - -
-
- - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - -
- Minute -
- - Hour -
- - Day -
- - Month -
- - Day of Week -
- - Command -
- > -
- - -
-
-
+ + + + + + + + + + + + +
+ + + + + +
+ + +
+
+ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + +
+ + +
+ + +
+ + +
+ + +
+ > +
+ + +
+
+
diff --git a/web/templates/admin/add_db.html b/web/templates/admin/add_db.html index e978bd54..fdeb1d8b 100644 --- a/web/templates/admin/add_db.html +++ b/web/templates/admin/add_db.html @@ -1,176 +1,176 @@ - - - - - - - - - - - - -
- - - - - - - -
- - -
-
- - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Prefix "" will be automaticaly added to database name and database user -
- Database -
- - Username -
- - Password generate -
- -
- Type -
- -
- Charset -
- -
- - -
-
-
+ + + + + + + + + + + + +
+ + + + + + + +
+ + +
+
+ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+ + +
+ + +
+ +
+ +
+ +
+ +
+ +
+ + +
+
+
diff --git a/web/templates/admin/add_dns.html b/web/templates/admin/add_dns.html index 0d02a9e9..8f8df86d 100644 --- a/web/templates/admin/add_dns.html +++ b/web/templates/admin/add_dns.html @@ -1,165 +1,165 @@ - - - - - - - - - - - - -
- - - - - - + +
- - -
-
- - - - -
- - - - - - - - - - - - - -
- Domain -
- - IP address -
- - Advanced Options -
- - - - - - - - - - - - - - - - - - - -
- Template -
- -
- Domain Expiriation (YYYY-MM-DD) -
- - TTL -
- - Name Servers -
- - - -
-
- + + + + + + + + +
+ +
+ + + + + +
+ + +
+
+ + + + +
+ + + + + + + + + + + + + +
+ +
+ + +
+ + +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ +
+ (YYYY-MM-DD) +
+ + TTL +
+ + +
+ + + +
+
+ diff --git a/web/templates/admin/panel.html b/web/templates/admin/panel.html index 4998543a..4049b100 100644 --- a/web/templates/admin/panel.html +++ b/web/templates/admin/panel.html @@ -1,76 +1,76 @@ -
- - -
- - -
- - - - - - - - - - -
PackagesIP AdressesRRD GraphicsStatisticsHistory LogLog out
- - - - - - - - - - - - +
+ + + + +
+ + + - -
+ + + + + + + + + + +
+ + + + + + + + + + + + diff --git a/web/templates/footer.html b/web/templates/footer.html index f1935d37..8670dd3c 100644 --- a/web/templates/footer.html +++ b/web/templates/footer.html @@ -1,22 +1,22 @@ - - - - - - - - -
Powered by Vesta Control Panel
vestacp.com
-
- - - - - - + + + + + + + + +
vestacp.com |
+
+ + + +
+ + diff --git a/web/templates/login.html b/web/templates/login.html index 00689c2d..895539f8 100644 --- a/web/templates/login.html +++ b/web/templates/login.html @@ -1,59 +1,59 @@ -
- - - - -
- - +
+ + + + +
+ + diff --git a/web/templates/reset_1.html b/web/templates/reset_1.html index 1d47d613..d721e041 100644 --- a/web/templates/reset_1.html +++ b/web/templates/reset_1.html @@ -1,52 +1,52 @@ -
- - - - - -
- - - +
+ + + + + +
+ + + diff --git a/web/templates/reset_2.html b/web/templates/reset_2.html index b6d98297..579417f5 100644 --- a/web/templates/reset_2.html +++ b/web/templates/reset_2.html @@ -1,52 +1,51 @@ -
- - - - - -
- - +
+ + + + + +
+ + diff --git a/web/templates/reset_3.html b/web/templates/reset_3.html index a2055ec0..21ede8a6 100644 --- a/web/templates/reset_3.html +++ b/web/templates/reset_3.html @@ -1,63 +1,63 @@ -
- - - - - -
- - +
+ + + + + +
+ + diff --git a/web/templates/user/panel.html b/web/templates/user/panel.html index f381630c..689d6097 100644 --- a/web/templates/user/panel.html +++ b/web/templates/user/panel.html @@ -1,75 +1,75 @@ -
- - -
- - -
- - - - - - - - - - -
StatisticsHistory LogLog out
- - - - - - - - - - - +
+ + +
+ + +
+ + + + + + + + + + +
+ + + + + + + + + + +