# HG changeset patch # User Kim Alvefur # Date 1690761949 -7200 # Node ID 6109496a7ccc02268e970064b885ecd5ba43ef8b # Parent 8de02381e80ae0befc6e25963e3ad4d6fe1a30c9 mod_http_oauth2: Move site name into
Because it's the site header diff -r 8de02381e80a -r 6109496a7ccc mod_http_oauth2/html/consent.html --- a/mod_http_oauth2/html/consent.html Mon Jul 31 02:04:05 2023 +0200 +++ b/mod_http_oauth2/html/consent.html Mon Jul 31 02:05:49 2023 +0200 @@ -7,16 +7,18 @@ -
{state.error&

{state.error}

} +

{site_name}

+
+
-
Authorize new application

A new application wants to connect to your account.

+
Name
{client.client_name}
diff -r 8de02381e80a -r 6109496a7ccc mod_http_oauth2/html/device.html --- a/mod_http_oauth2/html/device.html Mon Jul 31 02:04:05 2023 +0200 +++ b/mod_http_oauth2/html/device.html Mon Jul 31 02:05:49 2023 +0200 @@ -7,8 +7,10 @@ +
+

{site_name}

+
-

{site_name}

Device Authorization {error&
diff -r 8de02381e80a -r 6109496a7ccc mod_http_oauth2/html/error.html --- a/mod_http_oauth2/html/error.html Mon Jul 31 02:04:05 2023 +0200 +++ b/mod_http_oauth2/html/error.html Mon Jul 31 02:05:49 2023 +0200 @@ -7,8 +7,10 @@ +
+

{site_name}

+
-

{site_name}

Authentication error

There was a problem with the authentication request. If you were trying to sign in to a third-party application, you may want to report this issue to the developers.

diff -r 8de02381e80a -r 6109496a7ccc mod_http_oauth2/html/login.html --- a/mod_http_oauth2/html/login.html Mon Jul 31 02:04:05 2023 +0200 +++ b/mod_http_oauth2/html/login.html Mon Jul 31 02:05:49 2023 +0200 @@ -7,8 +7,10 @@ +
+

{site_name}

+
-

{site_name}

Sign in

Sign in to your account to continue.

diff -r 8de02381e80a -r 6109496a7ccc mod_http_oauth2/html/oob.html --- a/mod_http_oauth2/html/oob.html Mon Jul 31 02:04:05 2023 +0200 +++ b/mod_http_oauth2/html/oob.html Mon Jul 31 02:05:49 2023 +0200 @@ -7,8 +7,10 @@ +
+

{site_name}

+
-

{site_name}

Your Authorization Code

Here’s your authorization code, copy and paste it into {client.client_name}

diff -r 8de02381e80a -r 6109496a7ccc mod_http_oauth2/html/style.css --- a/mod_http_oauth2/html/style.css Mon Jul 31 02:04:05 2023 +0200 +++ b/mod_http_oauth2/html/style.css Mon Jul 31 02:05:49 2023 +0200 @@ -53,7 +53,7 @@ text-align: left; } -main { +header, main, footer { max-width: 600px; padding: 0 1.5em 1.5em 1.5em; } @@ -106,7 +106,7 @@ @media(min-width: 768px) { - main + header, main, footer { margin-left: auto; margin-right: auto;