diff --git a/config.default.ini.php b/config.default.ini.php index 776346a5..df9b70a4 100644 --- a/config.default.ini.php +++ b/config.default.ini.php @@ -12,6 +12,9 @@ ; timezone = "UTC" (default) timezone = "UTC" +; Display a system message to users. +message = "" + [http] timeout = 60 useragent = "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0" diff --git a/lib/html.php b/lib/html.php index 09bf0225..0b7dcc5c 100644 --- a/lib/html.php +++ b/lib/html.php @@ -17,6 +17,7 @@ function render(string $template, array $context = []): string if ($template === 'base.html.php') { throw new \Exception('Do not render base.html.php into itself'); } + $context['system_message'] = Configuration::getConfig('system', 'message'); $context['page'] = render_template($template, $context); return render_template('base.html.php', $context); } diff --git a/static/style.css b/static/style.css index 786e1526..1517e19e 100644 --- a/static/style.css +++ b/static/style.css @@ -69,13 +69,7 @@ header { margin-top: 40px; padding: 15px; color: #1182DB; -} - -header > div.logo { - background-image: url(logo_600px.png); - width: 599px; - height: 177px; - margin: auto; + text-align: center; } section.warning { @@ -349,6 +343,15 @@ button { width: 200px; } +.alert { + margin-bottom: 15px; + color: white; + font-weight: bold; + background-color: rgb(33, 150, 243); + padding: 15px; + border-radius: 4px; +} + @media screen and (max-width: 767px) { .container { width: 100%; @@ -359,12 +362,6 @@ button { margin-bottom: 5px; } - header > div.logo { - background-image: url(logo_300px.png); - width: 300px; - height: 89px; - } - button { display: inline-block; width: 40%; diff --git a/templates/base.html.php b/templates/base.html.php index 561d63ad..8a3dc6d5 100644 --- a/templates/base.html.php +++ b/templates/base.html.php @@ -12,9 +12,17 @@
- + + +
+ +
+ +
+ +
diff --git a/templates/html-format.html.php b/templates/html-format.html.php index f8aa4b61..d6fbda26 100644 --- a/templates/html-format.html.php +++ b/templates/html-format.html.php @@ -23,6 +23,13 @@
+ +
+ + + +
+