summaryrefslogtreecommitdiff
path: root/views
diff options
context:
space:
mode:
Diffstat (limited to 'views')
-rw-r--r--views/settings.php14
1 files changed, 14 insertions, 0 deletions
diff --git a/views/settings.php b/views/settings.php
index 23a1b71..537418c 100644
--- a/views/settings.php
+++ b/views/settings.php
@@ -24,6 +24,14 @@
<td width="140">access token</td>
<td><code style="word-break: break-word; white-space: pre-wrap;"><?= $this->user->micropub_access_token ?></code></td>
</tr>
+ <tr>
+ <td>
+ <input type="button" class="btn btn-default" value="Reset Login" id="reset-login">
+ </td>
+ <td>
+ Clicking this button will erase the access token Quill has stored for you, forget all cached endpoints, and sign you out. If you sign back in, you will start over and see the debugging screens and scope options again.
+ </td>
+ </tr>
</table>
@@ -110,5 +118,11 @@ $(function(){
});
});
+ $("#reset-login").click(function(){
+ $.post("/auth/reset", function(){
+ window.location = "/";
+ });
+ });
+
});
</script>