commit 6811a8294428b752bf01be5794208c2390eb1bae parent b9168848dcb302e7cc42ca6ae0fbfd960b699dd1 Author: Andrew <andreww107@gmail.com> Date: Sun, 16 Dec 2018 20:43:52 -0500 Update login.php Rearranged elements for CSS Diffstat:
M | website/login.php | | | 17 | ++++++++--------- |
1 file changed, 8 insertions(+), 9 deletions(-)
diff --git a/website/login.php b/website/login.php @@ -5,16 +5,15 @@ if (!empty($_GET)) { } ?> <html> -<h2> Sign In</h2> -<form class="signin-form" action="res/login-user.php" method="POST"> +<link rel="stylesheet" href="res/style.css"> -<input type="text" name="username" placeholder="User Name"> -<input type="text" name="password" placeholder="Password"> -<button type="submit" name="submit">Sign In</button> -<br> -<a href = "resestPass.php" target = "_blank">Forgot your password?</a> -<br> -<a href = "signUp.php" target = "_blank">Don't have an account?</a> +<form class="signin-form" action="res/login-user.php" method="POST"> + <h2> Sign In</h2> + <input type="text" name="username" placeholder="User Name"> + <input type="text" name="password" placeholder="Password"> + <button type="submit" name="submit">Sign In</button> <br> + <a href = "resestPass.php" target = "_blank">Forgot your password?</a> <br> + <a href = "signUp.php" target = "_blank">Don't have an account?</a> </form> </html>