diff mod_http_oauth2/html/login.html @ 5526:46e512f4ba14

mod_http_oauth2: Simplify template using if-falsy operator Relies on Prosody rev af1e3b7d9ea3 which added the {var~if-falsy}, released in 0.12. Since this module requires trunk this is fine.
author Kim Alvefur <zash@zash.se>
date Wed, 07 Jun 2023 12:54:52 +0200
parents 398d936e77fb
children 8de02381e80a
line wrap: on
line diff
--- a/mod_http_oauth2/html/login.html	Wed Jun 07 12:31:52 2023 +0200
+++ b/mod_http_oauth2/html/login.html	Wed Jun 07 12:54:52 2023 +0200
@@ -16,7 +16,7 @@
 		<p>{state.error}</p>
 	</div>}
 	<form method="post">
-		<input type="text" name="username" placeholder="Username" aria-label="Username" required {extra.no_username_hint&autofocus}{extra.username_hint& value="{extra.username_hint?}"}><br/>
+		<input type="text" name="username" placeholder="Username" aria-label="Username" required {extra.username_hint~autofocus}{extra.username_hint& value="{extra.username_hint?}"}><br/>
 		<input type="password" name="password" placeholder="Password" aria-label="Password" autocomplete="current-password" required {extra.username_hint&autofocus}><br/>
 		<input type="submit" value="Sign in">
 	</form>