59 lines
2.6 KiB
HTML
59 lines
2.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
<link rel="stylesheet" href="https://www.icofonts.com/style.css">
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
<div class="container" id="container">
|
|
<div class="form-container sign-up-container">
|
|
<form action="#">
|
|
<h1>Create Account</h1>
|
|
<div class="social-container">
|
|
<a href="#" class="social"><span class="icon icon-facebook"></span></a>
|
|
<a href="#" class="social"><span class="icon icon-google-plus"></span></a>
|
|
<a href="#" class="social"><span class="icon icon-linkedin2"></span></i></a>
|
|
</div>
|
|
<span>or use your email for registration</span>
|
|
<input type="text" placeholder="Name" />
|
|
<input type="email" placeholder="Email" />
|
|
<input type="password" placeholder="Password" />
|
|
<button>Sign Up</button>
|
|
</form>
|
|
</div>
|
|
<div class="form-container sign-in-container">
|
|
<form action="#">
|
|
<h1>Sign in</h1>
|
|
<div class="social-container">
|
|
<a href="#" class="social"><span class="icon icon-facebook"></span></a>
|
|
<a href="#" class="social"><span class="icon icon-google-plus"></span></i></a>
|
|
<a href="#" class="social"><span class="icon icon-linkedin2"></span></a>
|
|
</div>
|
|
<span>or use your account</span>
|
|
<input type="email" placeholder="Email" />
|
|
<input type="password" placeholder="Password" />
|
|
<a href="#">Forgot your password?</a>
|
|
<button>Sign In</button>
|
|
</form>
|
|
</div>
|
|
<div class="overlay-container">
|
|
<div class="overlay">
|
|
<div class="overlay-panel overlay-left">
|
|
<h1>Welcome Back!</h1>
|
|
<p>To keep connected with us please login with your personal info</p>
|
|
<button class="ghost" id="signIn">Sign In</button>
|
|
</div>
|
|
<div class="overlay-panel overlay-right">
|
|
<h1>Hello, Friend!</h1>
|
|
<p>Enter your personal details and start journey with us</p>
|
|
<button class="ghost" id="signUp">Sign Up</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script src="app.js"></script>
|
|
</body>
|
|
</html> |