aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Email_validation.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2018-01-27 22:25:46 +0100
committerMario Vavti <mario@mariovavti.com>2018-01-27 22:25:46 +0100
commit843d6311112c9174a1731c42a9d257f3f3a0bd0a (patch)
treeebb275fd10c7010a86667e083b2389a9b4407745 /Zotlabs/Module/Email_validation.php
parent2e4e56f7cc696b2c52014f0050294826caa74d7d (diff)
parentbd0f63980ba0d0e606f2dd7a65313f7e150d330a (diff)
downloadvolse-hubzilla-843d6311112c9174a1731c42a9d257f3f3a0bd0a.tar.gz
volse-hubzilla-843d6311112c9174a1731c42a9d257f3f3a0bd0a.tar.bz2
volse-hubzilla-843d6311112c9174a1731c42a9d257f3f3a0bd0a.zip
Merge remote-tracking branch 'mike/master' into dev
Diffstat (limited to 'Zotlabs/Module/Email_validation.php')
-rw-r--r--Zotlabs/Module/Email_validation.php38
1 files changed, 38 insertions, 0 deletions
diff --git a/Zotlabs/Module/Email_validation.php b/Zotlabs/Module/Email_validation.php
new file mode 100644
index 000000000..4cc016847
--- /dev/null
+++ b/Zotlabs/Module/Email_validation.php
@@ -0,0 +1,38 @@
+<?php
+
+namespace Zotlabs\Module;
+
+
+class Email_validation extends \Zotlabs\Web\Controller {
+
+ function post() {
+
+ if($_POST['token']) {
+ if(! account_approve(trim($_POST['token']))) {
+ notice('Token verification failed.');
+ }
+ }
+
+ }
+
+
+ function get() {
+
+ if(argc() > 1) {
+ $email = hex2bin(argv(1));
+ }
+
+ $o = replace_macros(get_markup_template('email_validation.tpl'), [
+ '$title' => t('Email Verification Required'),
+ '$desc' => sprintf( t('A verification token was sent to your email address [%s]. Enter that token here to complete the account verification step. Please allow a few minutes for delivery, and check your spam folder if you do not see the message.'),$email),
+ '$resend' => t('Resend Email'),
+ '$email' => bin2hex($email),
+ '$submit' => t('Submit'),
+ '$token' => [ 'token', t('Validation token'),'','' ],
+ ]);
+
+ return $o;
+
+ }
+
+} \ No newline at end of file