mirror of
https://github.com/CommunitySolidServer/CommunitySolidServer.git
synced 2024-10-03 14:55:10 +00:00
20 lines
570 B
Plaintext
20 lines
570 B
Plaintext
<h1>Authorize</h1>
|
|
<p>You are authorizing an application to access your Pod.</p>
|
|
<form method="post" id="mainForm">
|
|
<p class="error" id="error"></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>
|
|
|
|
<script>
|
|
addPostListener('mainForm', 'error', '', () => { throw new Error('Expected a location field in the response.') });
|
|
</script>
|