Comparison

mod_http_oauth2/html/device.html @ 5627:89b6d0e09b86

Merge upstream.
author Trần H. Trung <xmpp:trần.h.trung@trung.fun>
date Wed, 26 Jul 2023 18:45:41 +0700
parent 5615:1893ae742f66
child 5641:8de02381e80a
comparison
equal deleted inserted replaced
5595:f7410850941f 5627:89b6d0e09b86
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} - Authorize{client&d} Device</title>
7 <link rel="stylesheet" href="style.css">
8 </head>
9 <body>
10 <main>
11 <h1>{site_name}</h1>
12 <fieldset>
13 <legend>Device Authorization</legend>
14 {error&<div class="error">
15 <p>{error.text}</p>
16 </div>}
17 {client&
18 <p>Authorization completed. You can go back to
19 <em>{client.client_name}</em>.</p>}
20 {client~
21 <p>Enter the code to continue.</p>
22 <form method="get">
23 <input type="text" name="user_code" placeholder="XXXX-XXXX" aria-label="user-code" required >
24 <input type="submit" value="Continue">
25 </form>}
26 </fieldset>
27 </main>
28 </body>
29 </html>
30