Last active
November 8, 2023 09:28
-
-
Save puikinsh/fd9413473de09ea89080bb9d249d22ee to your computer and use it in GitHub Desktop.
This file contains 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"> | |
<title>CodePen - Flat HTML5/CSS3 Login Form</title> | |
<link rel="stylesheet" href="./style.css"> | |
</head> | |
<body> | |
<!-- partial:index.partial.html --> | |
<div class="login-page"> | |
<div class="form"> | |
<form class="register-form"> | |
<input type="text" placeholder="name"/> | |
<input type="password" placeholder="password"/> | |
<input type="text" placeholder="email address"/> | |
<button>create</button> | |
<p class="message">Already registered? <a href="#">Sign In</a></p> | |
</form> | |
<form class="login-form"> | |
<input type="text" placeholder="username"/> | |
<input type="password" placeholder="password"/> | |
<button>login</button> | |
<p class="message">Not registered? <a href="#">Create an account</a></p> | |
</form> | |
</div> | |
</div> | |
<!-- partial --> | |
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script><script src="./script.js"></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment