blob: b6b164c9a263c21e17e9f0ef03d87a081fdef1a8 (
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
|
<?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"];
/*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";
}
?>
|