Added base signup page

This commit is contained in:
Bofh 2021-11-25 13:34:40 +01:00
parent f243b08ec9
commit edd8ffb317
2 changed files with 21 additions and 0 deletions

1
public/signup/.htaccess Symbolic link
View File

@ -0,0 +1 @@
../.htaccess

20
public/signup/index.php Normal file
View File

@ -0,0 +1,20 @@
<?php require_once '/src/base.php' ?>
<?php
# process URI
$path = trim($_SERVER['REDIRECT_URL'], '/');
$args = explode('/', $path);
# no args is very unlikely, but still
if (count($args) === 0) {
die('Unexpected error');
}
# get the signup method from URL
$signup_method = $args[0];
if (!in_array($signup_method, ['mastodon'])) {
die('The given arguments are not correct');
}
# show arguments
var_dump($signup_method);