summaryrefslogtreecommitdiffstats
path: root/app/model/deleteacct.mod.php
diff options
context:
space:
mode:
authorMalf Furious <m@lfurio.us>2016-05-21 21:44:53 -0400
committerMalf Furious <m@lfurio.us>2016-05-21 21:44:53 -0400
commit32e4e9606fb2ac95b236913fcc0a98a7ee23bccd (patch)
tree2bff633083dd9639b17fdfd2b39f0646c47ee90b /app/model/deleteacct.mod.php
parent4778b9dedb1583ba1091da8d55d5ea6bf62f3202 (diff)
downloadscrott-32e4e9606fb2ac95b236913fcc0a98a7ee23bccd.tar.gz
scrott-32e4e9606fb2ac95b236913fcc0a98a7ee23bccd.zip
Add MVC Deleteacct
This will prompt the user for their password if they opt to delete their own account. This is to prevent malicious attempt by others to trick users into having there accounts deleted by way of a XSS attack.
Diffstat (limited to '')
-rw-r--r--app/model/deleteacct.mod.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/app/model/deleteacct.mod.php b/app/model/deleteacct.mod.php
new file mode 100644
index 0000000..ca01a0d
--- /dev/null
+++ b/app/model/deleteacct.mod.php
@@ -0,0 +1,15 @@
+<?php
+
+require_once "model/common.mod.php";
+
+class DeleteacctModel extends CommonModel
+{
+ /*
+ * Default action
+ */
+ function deflt()
+ {
+ }
+}
+
+?>