diff mod_http_oauth2/html/consent.html @ 5270:7acf73d2ebb5

mod_http_oauth2: Use <fieldset> in templates because it looks nice Removes some CSS as well
author Kim Alvefur <zash@zash.se>
date Thu, 23 Mar 2023 16:19:09 +0100
parents 0dcd956d7bc5
children 3a1df3adad0c
line wrap: on
line diff
--- a/mod_http_oauth2/html/consent.html	Thu Mar 23 12:47:51 2023 +0100
+++ b/mod_http_oauth2/html/consent.html	Thu Mar 23 16:19:09 2023 +0100
@@ -13,7 +13,8 @@
 	</div>}
 
 	<h1>{site_name}</h1>
-	<h2>Authorize new application</h2>
+	<fieldset>
+	<legend>Authorize new application</legend>
 	<p>A new application wants to connect to your account.</p>
 	<dl>
 		<dt>Name</dt>
@@ -40,6 +41,7 @@
 		<button type="submit" name="consent" value="denied">Deny</button>
 		<button type="submit" name="consent" value="granted">Allow</button>
 	</form>
+	</fieldset>
 	</main>
 </body>
 </html>