diff --git a/web/css/main.css b/web/css/main.css
index 2d687a32..f1d6b791 100644
--- a/web/css/main.css
+++ b/web/css/main.css
@@ -813,3 +813,9 @@ form {
font-size: 10pt;
color: #dE6c5d;
}
+
+.hint {
+ font-size: 14pt;
+ color: #7fa1cb;
+ padding: 5px;
+}
diff --git a/web/js/pages/add.web.js b/web/js/pages/add.web.js
index c66a8f21..36f59982 100644
--- a/web/js/pages/add.web.js
+++ b/web/js/pages/add.web.js
@@ -1,11 +1,11 @@
App.Actions.WEB.update_ftp_username_hint = function(elm, hint) {
if (hint.trim() == '') {
- $(elm).parent().find('.ftp_username_hint').html('');
+ $(elm).parent().find('.hint').html('');
}
if (hint.indexOf(GLOBAL.FTP_USER_PREFIX) == 0) {
hint = hint.slice(GLOBAL.FTP_USER_PREFIX.length, hint.length);
}
- $(elm).parent().find('.ftp_username_hint').html(GLOBAL.FTP_USER_PREFIX + hint);
+ $(elm).parent().find('.hint').html(GLOBAL.FTP_USER_PREFIX + hint);
}
App.Listeners.WEB.keypress_ftp_username = function() {
diff --git a/web/js/pages/edit.web.js b/web/js/pages/edit.web.js
index c66a8f21..36f59982 100644
--- a/web/js/pages/edit.web.js
+++ b/web/js/pages/edit.web.js
@@ -1,11 +1,11 @@
App.Actions.WEB.update_ftp_username_hint = function(elm, hint) {
if (hint.trim() == '') {
- $(elm).parent().find('.ftp_username_hint').html('');
+ $(elm).parent().find('.hint').html('');
}
if (hint.indexOf(GLOBAL.FTP_USER_PREFIX) == 0) {
hint = hint.slice(GLOBAL.FTP_USER_PREFIX.length, hint.length);
}
- $(elm).parent().find('.ftp_username_hint').html(GLOBAL.FTP_USER_PREFIX + hint);
+ $(elm).parent().find('.hint').html(GLOBAL.FTP_USER_PREFIX + hint);
}
App.Listeners.WEB.keypress_ftp_username = function() {
diff --git a/web/templates/admin/add_web.html b/web/templates/admin/add_web.html
index df937fea..2f5bac13 100644
--- a/web/templates/admin/add_web.html
+++ b/web/templates/admin/add_web.html
@@ -1,366 +1,361 @@
+
+
+
-
+