diff --git a/webinstaller/app.py b/webinstaller/app.py index f7722ee..b6d8ad6 100644 --- a/webinstaller/app.py +++ b/webinstaller/app.py @@ -639,7 +639,7 @@ def install_reboot(): ["/bin/sh", "-c", "sleep 3 && /usr/bin/systemctl reboot"], start_new_session=True, ) - return render_template("install/rebooting.html") + return render_template("install/rebooting.html", hostname=settings["hostname"]) if __name__ == "__main__": diff --git a/webinstaller/static/style.css b/webinstaller/static/style.css index 702b1d7..057e626 100644 --- a/webinstaller/static/style.css +++ b/webinstaller/static/style.css @@ -126,6 +126,10 @@ h1 { margin: 0 0 2rem; font-size: 1.05rem; } +.muted { + color: var(--fg-muted); + font-size: 0.9rem; +} /* ── Forms ──────────────────────────────────────────────────── */ diff --git a/webinstaller/templates/base.html b/webinstaller/templates/base.html index da311b6..a2968c4 100644 --- a/webinstaller/templates/base.html +++ b/webinstaller/templates/base.html @@ -11,7 +11,7 @@