34 lines
1 KiB
PHP
34 lines
1 KiB
PHP
|
<?php
|
||
|
require_once '/var/www/flashii.net/_sakura/sakura.php';
|
||
|
|
||
|
if(isset($_POST['submit'])) {
|
||
|
|
||
|
$pass = Sakura\Hashing::create_hash($_POST['password']);
|
||
|
|
||
|
$regData = [
|
||
|
'username' => $_POST['username'],
|
||
|
'username_clean' => Sakura\Main::cleanString($_POST['username'], true),
|
||
|
'password_hash' => $pass[3],
|
||
|
'password_salt' => $pass[2],
|
||
|
'password_algo' => $pass[0],
|
||
|
'password_iter' => $pass[1],
|
||
|
'password_chan' => time(),
|
||
|
'email' => Sakura\Main::cleanString($_POST['email'], true),
|
||
|
'regdate' => time(),
|
||
|
'lastdate' => time(),
|
||
|
'lastunamechange' => time(),
|
||
|
'profile_data' => json_encode([])
|
||
|
];
|
||
|
|
||
|
print_r($regData);
|
||
|
exit;
|
||
|
|
||
|
}
|
||
|
?>
|
||
|
<form method="post" action="<?=$_SERVER['PHP_SELF'];?>">
|
||
|
username: <input type="text" name="username" /><br />
|
||
|
password: <input type="password" name="password" /><br />
|
||
|
email: <input type="text" name="email" /><br />
|
||
|
<input type="submit" name="submit" value="Submit" />
|
||
|
</form>
|