- Users can now create their own accounts! Still needs to re-direct (home? user panel?) - Reformatted the folder structure again, trying to achieve more consistent file locations
39 lines
1.6 KiB
PHP
39 lines
1.6 KiB
PHP
<?php
|
|
session_start();
|
|
$redirect = $_GET["redirect"];
|
|
?>
|
|
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
|
|
<link rel="stylesheet" href="styles/primary.css" />
|
|
<link rel="stylesheet" href="styles/login.css" />
|
|
<script src="admin/user_management/user_management.js"></script>
|
|
<title>ADMIN PANEL - Trojan's Trophy Room</title>
|
|
</head>
|
|
|
|
<body id="loginBody">
|
|
<h3 id="loginNotice">Sign in to continue</h3>
|
|
<div id="loginPanel">
|
|
<form id="loginForm" onsubmit="return verifyInput()" action="login.php?redirect=<?php echo $redirect; ?>" method="POST">
|
|
<div id="inputArea">
|
|
<label for="username">Username:</label>
|
|
<input type="text" name="username" id="username" required>
|
|
<p class="newLine"></p>
|
|
<label for="password">Password:</label>
|
|
<input type="password" name="password" id="password" required>
|
|
<p class="newLine"></p>
|
|
<label for="showPassword" id="showPasswordLabel">Show Password: </label>
|
|
<input type="checkbox" name="showPassword" id="showPassword" onchange="displayPassword();">
|
|
<p class="newLine"> </p>
|
|
</div>
|
|
<div id="submitButton">
|
|
<input type="submit" value="Log In">
|
|
</div>
|
|
</form>
|
|
</div>
|
|
<p class="newLine"></p>
|
|
</body>
|
|
</html>
|