summaryrefslogtreecommitdiff
path: root/views/delete_account.pug
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2022-09-30 18:36:19 +0200
committerTor Andersson <tor@ccxvii.net>2022-10-05 17:36:50 +0200
commit2f0ba65a7b21fe6ef0c6131f73c28a823bcb0b0d (patch)
tree266ad66c4f6ec473a25e0530d1f40d6e7e55a15c /views/delete_account.pug
parentf968d091d6c3f313054b88a048c63280dd73fd31 (diff)
downloadserver-2f0ba65a7b21fe6ef0c6131f73c28a823bcb0b0d.tar.gz
Add "delete account" screen.
Diffstat (limited to 'views/delete_account.pug')
-rw-r--r--views/delete_account.pug29
1 files changed, 29 insertions, 0 deletions
diff --git a/views/delete_account.pug b/views/delete_account.pug
new file mode 100644
index 0000000..905945c
--- /dev/null
+++ b/views/delete_account.pug
@@ -0,0 +1,29 @@
+//- vim:ts=4:sw=4:
+doctype html
+html
+ head
+ include head
+ title Delete account
+ body
+ include header
+ article
+ h1 Delete account
+ if flash
+ p.error= flash
+
+ form(method="post" action="/delete-account")
+ p Name: #{user.name}
+ p Mail: #{user.mail}
+ p
+ label Password:
+ br
+ input(type="password" name="password" required)
+ p
+ label Type DELETE to confirm:
+ br
+ input(type="text" name="confirm" pattern="^DELETE$" required)
+ p.warning WARNING: Deleting your account is permanent!
+ p All your games and messages will be lost forever.
+ p
+ button(onclick="window.location='/profile'") Cancel
+ button(type="submit") Delete!