Last active
October 20, 2020 15:48
-
-
Save khokonm/02393e76635a2d49b4a13db2521ea98e to your computer and use it in GitHub Desktop.
For Simple Login System Blog Post.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Complete Login and Register System By Blog Desire</title> | |
<link rel="stylesheet" href="./style.css"> | |
</head> | |
<body> | |
<div id="wrapper"> | |
<div id="body"> | |
<form action="process.php" method="POST" id="form"> | |
<h2 class="form-title">Login To Continue</h2> | |
<input type="text" name="username" placeholder="username"> | |
<input type="password" name="password" placeholder="********"> | |
<button class="button" name="login" type="submit">Login</button> | |
<div class="alter-option"> | |
Not a member? Register <a href="./register.html">Here</a>! | |
</div> | |
</form> | |
</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment