Visual improvements

This commit is contained in:
William Miceli
2019-12-03 23:53:43 -05:00
parent e93827e46f
commit 2b11c3339a
6 changed files with 34 additions and 19 deletions

View File

@@ -14,7 +14,7 @@
$_SESSION['loggedInUser'] = $_POST['login_username'];
unset($_SESSION['loginError']);
// Move onto landing page
// header('Location: /landingPage.html');
header('Location: /messages.php');
}else{
// No matching users found, send user an error message
$_SESSION['loginError'] = 'Invalid Username or Password';
@@ -46,11 +46,10 @@
</div>
<h2><font color="white">Please Login</h2>
<form action="" method="post">
User&colon;
<input type="text" name="login_username" placeholder="Username"><br />
Password&colon;
<input type="password" name="login_password" placeholder="Password"><br />
<input type="submit">
User&colon; <input type="text" name="login_username" placeholder="Username"><br />
Password&colon; <input type="password" name="login_password" placeholder="Password"><br />
<br />
<input type="submit" class="button">
</form>
</body>
</html>