Comparison

mod_http_oauth2/html/login.html @ 5673:0eb2d5ea2428

merge
author Stephen Paul Weber <singpolyma@singpolyma.net>
date Sat, 06 May 2023 19:40:23 -0500
parent 5272:acab61ba7f02
child 5466:398d936e77fb
comparison
equal deleted inserted replaced
5672:2c69577b28c2 5673:0eb2d5ea2428
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <meta charset="utf-8">
5 <meta name="viewport" content="width=device-width, initial-scale=1" />
6 <title>{site_name} - Sign in</title>
7 <link rel="stylesheet" href="style.css">
8 </head>
9 <body>
10 <main>
11 <h1>{site_name}</h1>
12 <fieldset>
13 <legend>Sign in</legend>
14 <p>Sign in to your account to continue.</p>
15 {state.error&<div class="error">
16 <p>{state.error}</p>
17 </div>}
18 <form method="post">
19 <input type="text" name="username" placeholder="Username" aria-label="Username" required autofocus><br/>
20 <input type="password" name="password" placeholder="Password" aria-label="Password" autocomplete="current-password" required><br/>
21 <input type="submit" value="Sign in">
22 </form>
23 </fieldset>
24 </main>
25 </body>
26 </html>