mirror of https://github.com/n7tae/new-xlxd.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
149 lines
5.5 KiB
149 lines
5.5 KiB
<?php
|
|
// Include config file
|
|
require_once "configure.php";
|
|
|
|
function IsValidCallsign(string $callsign)
|
|
{
|
|
$regex = '/^(([1-9][A-Z])|([A-PR-Z][0-9])|([A-PR-Z][A-Z][0-9]))[0-9A-Z]*[A-Z]$/';
|
|
$rval = preg_match($regex, $callsign);
|
|
if (FALSE === $rval)
|
|
die("trouble with callsign regular expression\n");
|
|
return $rval;
|
|
}
|
|
|
|
// Define variables and initialize with empty values
|
|
$callsign = $password = $confirm_password = "";
|
|
$callsign_err = $password_err = $confirm_password_err = "";
|
|
|
|
// Processing form data when form is submitted
|
|
if ($_SERVER["REQUEST_METHOD"] == "POST") {
|
|
|
|
// Validate callsign
|
|
if (empty(trim($_POST["callsign"]))) {
|
|
$callsign_err = "Please enter your callsign.";
|
|
} else if (strlen(trim($_POST["callsign"])) > 7) {
|
|
$callsign_err = "Callsign is too long.";
|
|
} else if (! IsValidCallsign(strtoupper(trim($_POST["callsign"])))) {
|
|
$callsign_err = "Not a valid callsign.";
|
|
} else {
|
|
// Prepare a select statement
|
|
$sql = "SELECT * FROM users WHERE callsign = ?";
|
|
|
|
if ($stmt = mysqli_prepare($link, $sql)) {
|
|
// Bind variables to the prepared statement as parameters
|
|
mysqli_stmt_bind_param($stmt, "s", $param_callsign);
|
|
|
|
// Set parameters
|
|
$param_callsign = strtoupper(trim($_POST["callsign"]));
|
|
|
|
// Attempt to execute the prepared statement
|
|
if (mysqli_stmt_execute($stmt)) {
|
|
/* store result */
|
|
mysqli_stmt_store_result($stmt);
|
|
|
|
if (mysqli_stmt_num_rows($stmt) == 1) {
|
|
$callsign_err = "This callsign is already taken.";
|
|
} else {
|
|
$callsign = strtoupper(trim($_POST["callsign"]));
|
|
}
|
|
} else {
|
|
echo "Oops! Something went wrong. Please try again later.";
|
|
}
|
|
|
|
// Close statement
|
|
mysqli_stmt_close($stmt);
|
|
}
|
|
}
|
|
|
|
// Validate password
|
|
if (empty(trim($_POST["password"]))) {
|
|
$password_err = "Please enter a password.";
|
|
} elseif (strlen(trim($_POST["password"])) < 6) {
|
|
$password_err = "Password must have atleast 6 characters.";
|
|
} else {
|
|
$password = trim($_POST["password"]);
|
|
}
|
|
|
|
// Validate confirm password
|
|
if (empty(trim($_POST["confirm_password"]))) {
|
|
$confirm_password_err = "Please confirm password.";
|
|
} else {
|
|
$confirm_password = trim($_POST["confirm_password"]);
|
|
if(empty($password_err) && ($password != $confirm_password)){
|
|
$confirm_password_err = "Password did not match.";
|
|
}
|
|
}
|
|
|
|
// Check input errors before inserting in database
|
|
if (empty($callsign_err) && empty($password_err) && empty($confirm_password_err)) {
|
|
|
|
// Prepare an insert statement
|
|
$sql = "INSERT INTO users (callsign, password) VALUES (?, ?)";
|
|
|
|
if ($stmt = mysqli_prepare($link, $sql)) {
|
|
// Bind variables to the prepared statement as parameters
|
|
mysqli_stmt_bind_param($stmt, "ss", $param_callsign, $param_password);
|
|
|
|
// Set parameters
|
|
$param_callsign = $callsign;
|
|
$param_password = password_hash($password, PASSWORD_DEFAULT); // Creates a password hash
|
|
|
|
// Attempt to execute the prepared statement
|
|
if (mysqli_stmt_execute($stmt)) {
|
|
// Redirect to login page
|
|
header("location: login.php");
|
|
} else {
|
|
echo "Something went wrong. Please try again later.";
|
|
}
|
|
|
|
// Close statement
|
|
mysqli_stmt_close($stmt);
|
|
}
|
|
}
|
|
|
|
// Close connection
|
|
mysqli_close($link);
|
|
}
|
|
?>
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Hot-Spot Frequency for WiresX Registration</title>
|
|
<link rel="stylesheet" href="bootstrap.css">
|
|
<style type="text/css">
|
|
body{ font: 14px sans-serif; }
|
|
.wrapper{ width: 350px; padding: 20px; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="wrapper">
|
|
<h2>Sign Up</h2>
|
|
<p>Please fill this form to create an account. Use your hot-spot callsign to register.</p>
|
|
<form action="<?php echo htmlspecialchars($_SERVER["PHP_SELF"]); ?>" method="post">
|
|
<div class="form-group <?php echo (!empty($callsign_err)) ? 'has-error' : ''; ?>">
|
|
<label>Your Callsign</label>
|
|
<input type="text" name="callsign" class="form-control" value="<?php echo $callsign; ?>">
|
|
<span class="help-block"><?php echo $callsign_err; ?></span>
|
|
</div>
|
|
<div class="form-group <?php echo (!empty($password_err)) ? 'has-error' : ''; ?>">
|
|
<label>Password</label>
|
|
<input type="password" name="password" class="form-control" value="<?php echo $password; ?>">
|
|
<span class="help-block"><?php echo $password_err; ?></span>
|
|
</div>
|
|
<div class="form-group <?php echo (!empty($confirm_password_err)) ? 'has-error' : ''; ?>">
|
|
<label>Confirm Password</label>
|
|
<input type="password" name="confirm_password" class="form-control" value="<?php echo $confirm_password; ?>">
|
|
<span class="help-block"><?php echo $confirm_password_err; ?></span>
|
|
</div>
|
|
<div class="form-group">
|
|
<input type="submit" class="btn btn-primary" value="Submit">
|
|
<input type="reset" class="btn btn-default" value="Reset">
|
|
</div>
|
|
<p>Already have an account? <a href="login.php">Login here</a>.</p>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html>
|