Last active
April 12, 2023 22:37
-
-
Save Ze1598/f209cf7ed867ff81d38fbaa61da9fd74 to your computer and use it in GitHub Desktop.
Login page - HTML
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>Login</title> | |
<link rel="stylesheet" href="login-page.css"> | |
<script defer src="login-page.js"></script> | |
</head> | |
<body> | |
<main id="main-holder"> | |
<h1 id="login-header">Login</h1> | |
<div id="login-error-msg-holder"> | |
<p id="login-error-msg">Invalid username <span id="error-msg-second-line">and/or password</span></p> | |
</div> | |
<form id="login-form"> | |
<input type="text" name="username" id="username-field" class="login-form-field" placeholder="Username"> | |
<input type="password" name="password" id="password-field" class="login-form-field" placeholder="Password"> | |
<input type="submit" value="Login" id="login-form-submit"> | |
</form> | |
</main> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Login