comparison mod_http_oauth2/html/oob.html @ 5624:6109496a7ccc

mod_http_oauth2: Move site name into <header> Because it's the site header
author Kim Alvefur <zash@zash.se>
date Mon, 31 Jul 2023 02:05:49 +0200
parents 8de02381e80a
children f889ff779571
comparison
equal deleted inserted replaced
5623:8de02381e80a 5624:6109496a7ccc
5 <meta name="viewport" content="width=device-width, initial-scale=1" /> 5 <meta name="viewport" content="width=device-width, initial-scale=1" />
6 <title>{site_name} - Authorization Code</title> 6 <title>{site_name} - Authorization Code</title>
7 <link rel="stylesheet" href="style.css" /> 7 <link rel="stylesheet" href="style.css" />
8 </head> 8 </head>
9 <body> 9 <body>
10 <header>
11 <h1>{site_name}</h1>
12 </header>
10 <main> 13 <main>
11 <h1>{site_name}</h1>
12 <h2>Your Authorization Code</h2> 14 <h2>Your Authorization Code</h2>
13 <p>Here’s your authorization code, copy and paste it into {client.client_name}</p> 15 <p>Here’s your authorization code, copy and paste it into {client.client_name}</p>
14 <div class="oob"> 16 <div class="oob">
15 <p><input readonly name="authorization_code" value="{authorization_code}"></p> 17 <p><input readonly name="authorization_code" value="{authorization_code}"></p>
16 </div> 18 </div>