Add files via upload

This commit is contained in:
Dangrainage 2023-07-20 12:32:28 +02:00 committed by GitHub
commit bc099e3261
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 133 additions and 0 deletions

48
Redditlike.HTML Normal file
View file

@ -0,0 +1,48 @@
<!DOCTYPE html>
<html>
<head>
<title>Reddit test pokusaj 1000000000000000</title>
</head>
<body>
<header>
<h1>reddddd</h1>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Filler (novi post)</a></li>
<li><a href="#">filler</a></li>
<li><a href="#">Login</a></li>
<li><a href="#">Sign Up</a></li>
</ul>
</nav>
</header>
<main>
<section>
<h2>Test text</h2>
<ul>
<li>
<a href="#">
<h3>Title of Post 1</h3>
</a>
<p>Posted by <a href="#">ime ovde</a></p>
</li>
<li>
<a href="#">
<h3>Title of Post 2</h3>
</a>
<p>Posted by <a href="#">aaaaaaaaaaaaaaa</a></p>
</li>
<li>
<a href="#">
<h3>Title of Post 3</h3>
</a>
<p>Posted by <a href="#">imeeeeee</a>fillertekst za test vremena</p>
</li>
</ul>
</section>
</main>
<footer>
<p></p>
</footer>
</body>
</html>

8
Redditlikelogin.HTML Normal file
View file

@ -0,0 +1,8 @@
<form action="#" method="post">
<h2>Login</h2>
<label for="username">Username:</label>
<input type="text" id="username" name="username" required>
<label for="password">Password:</label>
<input type="password" id="password" name="password" required>
<button type="submit">Login</button>
</form>

12
Redditlikesignup.HTML Normal file
View file

@ -0,0 +1,12 @@
<form action="#" method="post">
<h2>Sign Up</h2>
<label for="username">Username:</label>
<input type="text" id="username" name="username" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="password">Password:</label>
<input type="password" id="password" name="password" required>
<label for="confirm-password">Confirm Password:</label>
<input type="password" id="confirm-password" name="confirm-password" required>
<button type="submit">Sign Up</button>
</form>

65
controller.PHP Normal file
View file

@ -0,0 +1,65 @@
<?php
// Route for handling login form submissions
if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['login'])) {
$username = $_POST['username'];
$password = $_POST['password'];
// Check if username and password are valid
if ($username === 'admin' && $password === 'password') {
// Redirect to home page if login is successful
header('Location: /');
exit;
} else {
// Display an error message if login is unsuccessful
$error = 'Invalid username or password.';
}
}
// Route for handling sign-up form submissions
if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['signup'])) {
$username = $_POST['username'];
$email = $_POST['email'];
$password = $_POST['password'];
$confirm_password = $_POST['confirm_password'];
// Check if passwords match
if ($password === $confirm_password) {
// Redirect to home page if sign-up is successful
header('Location: /');
exit;
} else {
// Display an error message if passwords don't match
$error = 'Passwords do not match.';
}
}
?>
<!-- Login Form -->
<form action="<?php echo htmlspecialchars($_SERVER["PHP_SELF"]); ?>" method="post">
<h2>Login</h2>
<?php if (isset($error) && !empty($error)): ?>
<p><?php echo htmlspecialchars($error); ?></p>
<?php endif; ?>
<label for="username">Username:</label>
<input type="text" id="username" name="username" required>
<label for="password">Password:</label>
<input type="password" id="password" name="password" required>
<button type="submit" name="login">Login</button>
</form>
<!-- Sign-up Form -->
<form action="<?php echo htmlspecialchars($_SERVER["PHP_SELF"]); ?>" method="post">
<h2>Sign Up</h2>
<?php if (isset($error) && !empty($error)): ?>
<p><?php echo htmlspecialchars($error); ?></p>
<?php endif; ?>
<label for="username">Username:</label>
<input type="text" id="username" name="username" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="password">Password:</label>
<input type="password" id="password" name="password" required>
<label for="confirm-password">Confirm Password:</label>
<input type="password" id="confirm-password" name="confirm_password" required>
<button type="submit" name="signup">Sign Up</button>
</form>