made register secure (hopefuly) and added the actual forms

This commit is contained in:
Richard Mikloš 2024-01-20 17:15:31 +01:00
parent 607c307dc5
commit f2bec5f92d
3 changed files with 31 additions and 23 deletions

@ -9,7 +9,8 @@
<body>
<h2>Login</h2>
<form action="../login.php" method="post">
<!-- Add your login form fields here (e.g., username, password) -->
<input type="email" name="email" id="email-field" required>
<input type="password" name="password" id="password-field" required>
<input type="submit" value="Login">
</form>
</body>

@ -9,7 +9,9 @@
<body>
<h2>Register</h2>
<form action="../register.php" method="post">
<!-- Add your registration form fields here (e.g., username, email, password) -->
<input type="text" name="username" id="username-field" required>
<input type="email" name="email" id="email-field" required>
<input type="password" name="password" id="password-field" required>
<input type="submit" value="Register">
</form>
</body>

@ -4,6 +4,10 @@ require_once 'config.php';
// Handle registration form submission
if ($_SERVER["REQUEST_METHOD"] == "POST") {
// Validate that required fields are provided
if (empty($_POST['username']) || empty($_POST['email']) || empty($_POST['password'])) {
echo "Please provide all required fields (username, email, and password).";
} else {
$username = $_POST['username'];
$email = $_POST['email'];
$password = $_POST['password'];
@ -28,4 +32,5 @@ if ($_SERVER["REQUEST_METHOD"] == "POST") {
// Close the statement
$stmt->close();
}
}
?>