aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Regapr.php
blob: 9e6cb1de8e8898419202f6b2c83dd8ff18e54fed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php
namespace Zotlabs\Module;

use Zotlabs\Web\Controller;

class Regapr extends Controller {

	function get() {

		$o = '';

		$did2  = hex2bin(argv(1));

		if(!$did2)
			return $o;

		$o .= 'Thank you for registering!' . PHP_EOL;
		$o .= 'After your account has been approved by our administrator you will be able to login with your ID' . PHP_EOL;
		$o .= $did2 . PHP_EOL;
		$o .= 'and your provided password.';

		return $o;

	}

}