diff --git a/management/templates/login.html b/management/templates/login.html
index b6e74df6..f3ee9afa 100644
--- a/management/templates/login.html
+++ b/management/templates/login.html
@@ -2,142 +2,142 @@
{% if no_users_exist or no_admins_exist %}
-
- {% if no_users_exist %}
-
There are no users on this system! To make an administrative user,
- log into this machine using SSH (like when you first set it up) and run:
-
cd mailinabox
+
+ {% if no_users_exist %}
+
There are no users on this system! To make an administrative user,
+ log into this machine using SSH (like when you first set it up) and run:
+
cd mailinabox
sudo tools/mail.py user add me@{{hostname}}
sudo tools/mail.py user make-admin me@{{hostname}}
- {% else %}
-
There are no administrative users on this system! To make an administrative user,
- log into this machine using SSH (like when you first set it up) and run:
-
cd mailinabox
+ {% else %}
+ There are no administrative users on this system! To make an administrative user,
+ log into this machine using SSH (like when you first set it up) and run:
+ cd mailinabox
sudo tools/mail.py user make-admin me@{{hostname}}
- {% endif %}
-
-
+ {% endif %}
+
+
{% endif %}
Log in here for your Mail-in-a-Box control panel.
diff --git a/setup/management.sh b/setup/management.sh
index 3caf8eea..c61c8e8a 100755
--- a/setup/management.sh
+++ b/setup/management.sh
@@ -69,18 +69,18 @@ rm -rf $assets_dir
mkdir -p $assets_dir
# jQuery CDN URL
-jquery_version=2.1.4
+jquery_version=3.5.0
jquery_url=https://code.jquery.com
# Get jQuery
-wget_verify $jquery_url/jquery-$jquery_version.min.js 43dc554608df885a59ddeece1598c6ace434d747 $assets_dir/jquery.min.js
+wget_verify $jquery_url/jquery-$jquery_version.min.js 1d6ae46f2ffa213dede37a521b011ec1cd8d1ad3 $assets_dir/jquery.min.js
# Bootstrap CDN URL
-bootstrap_version=3.3.7
+bootstrap_version=4.4.1
bootstrap_url=https://github.com/twbs/bootstrap/releases/download/v$bootstrap_version/bootstrap-$bootstrap_version-dist.zip
# Get Bootstrap
-wget_verify $bootstrap_url e6b1000b94e835ffd37f4c6dcbdad43f4b48a02a /tmp/bootstrap.zip
+wget_verify $bootstrap_url 52759c9d307308da862ac29e1c41bfcfe81313eb /tmp/bootstrap.zip
unzip -q /tmp/bootstrap.zip -d $assets_dir
mv $assets_dir/bootstrap-$bootstrap_version-dist $assets_dir/bootstrap
rm -f /tmp/bootstrap.zip