blob: c314856b2bc69afc50d1ce961dcdd99c7c56af7f (
plain)
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
27
28
29
30
31
32
33
34
35
36
37
|
<?php
require_once "database.php";
require_once "misc.php";
require_once "configuration.php";
$username=$_POST["username"];
$password=$_POST["password"];
$password2=$_POST["password2"];
$email=$_POST["email"];
function validate_credentials(string $username,string $email,string $password,string $password2) : bool
{
return true;
}
/*check if we are given shady credentials*/
if(!validate_credentials($username,$email,$password,$password2))
{
error_log("Invalid registration that has probbably bypassed client side verification. This could be an attack!");
die();
}
$database= new Database;
if($database->register_user($username,$password,$email))
{
echo "registered";
}else
{
echo "didn't register";
}
header('Location: /');
?>
|