mirror of
https://github.com/CommunitySolidServer/CommunitySolidServer.git
synced 2024-10-03 14:55:10 +00:00

The IDP behaviour has been changed to move all error related knowledge to the IdentityProviderHttpHandler instead of managing it in the Interactionhandlers.
18 lines
464 B
Plaintext
18 lines
464 B
Plaintext
<h1>Authorize</h1>
|
|
<p>You are authorizing an application to access your Pod.</p>
|
|
<form method="post">
|
|
<% if (locals.message) { %>
|
|
<p class="error"><%= message %></p>
|
|
<% } %>
|
|
|
|
<fieldset>
|
|
<ol>
|
|
<li class="checkbox">
|
|
<label><input type="checkbox" name="remember" value="yes" checked>Stay logged in</label>
|
|
</li>
|
|
</ol>
|
|
</fieldset>
|
|
|
|
<p class="actions"><button autofocus type="submit" name="submit">Continue</button></p>
|
|
</form>
|