Small knowledge, big challenge! This paper is participating in theEssentials for programmers”Creative activities.
Click like collection, prevent getting lost oh 😘
Let’s take a look at the renderings first
The source code
<! DOCTYPEhtml>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="Width = device - width, initial - scale = 1.0">
<title>login/register</title>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
</head>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f6f5f7;
}
h2 {
margin-bottom: 10px;
font-size: 32px;
text-transform: capitalize;
}
.container {
position: relative;
width: 768px;
height: 480px;
background-color: white;
box-shadow: 0 14px 28px rgba(0.0.0.0.25), 0 10px 10px rgba(0.0.0.0.2);
border-radius: 10px;
overflow: hidden;
}
.form-container {
position: absolute;
top: 0;
width: 50%;
height: 100%;
background-color: white;
transition: all 0.6 s ease-in-out;
}
.form {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100%;
width: 100%;
padding: 0 50px;
}
input {
width: 100%;
margin: 8px 0;
padding: 12px;
background-color: #eee;
border: none;
}
.forget-password {
display: inline-block;
height: 20px;
text-decoration: none;
color: #bbb;
text-transform: capitalize;
font-size: 12px;
}
.forget-password:hover {
color: lightslategray;
border-bottom: 2px solid #ff4b2b;
}
button {
background: #ff4b2b;
padding: 10px 50px;
border: 1px solid transparent;
border-radius: 20px;
text-transform: uppercase;
color: white;
margin-top: 10px;
outline: none;
transition: transform 80;
}
button:active {
transform: scale(0.95);
}
.overlay_container {
position: absolute;
top: 0;
width: 50%;
height: 100%;
z-index: 100;
right: 0;
overflow: hidden;
transition: all 0.6 s ease-in-out;
}
.overlay {
position: absolute;
width: 200%;
height: 100%;
left: -100%;
background-color: #ff4b2b;
}
.overlay_panel {
position: absolute;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 50%;
height: 100%;
color: white;
padding: 0 40px;
text-align: center;
}
.overlay_panel button {
background-color: transparent;
border: 1px solid white;
}
.overlay_panel p {
font-size: 12px;
margin: 10px 0 15px 0;
}
.overlay_right_container {
right: 0;
}
.container.active .sign-up-container {
transform: translateX(100%);
z-index: 5;
}
.container.active .sign-in-container {
transform: translateX(100%);
}
.container.active .overlay_container {
transform: translateX(-100%);
}
.container.active .overlay {
transform: translateX(50%);
}
</style>
<body>
<! -- login/register container -->
<div class="container">
<! -- register -->
<div class="form-container sign-up-container">
<div class="form">
<h2>sign up</h2>
<input type="text" name="username" id="username" placeholder="Username...">
<input type="email" name="emal" id="email" placeholder="Email...">
<input type="password" name="password" id="password" placeholder="Password...">
<button class="signUp">sign up</button>
</div>
</div>
<! -- login -->
<div class="form-container sign-in-container">
<div class="form">
<h2>sign in</h2>
<input type="email" name="emal" id="email" placeholder="Email...">
<input type="password" name="password" id="password" placeholder="Password...">
<a href="#" class="forget-password">forget your password</a>
<button class="signIn">sign in</button>
</div>
</div>
<! -- overlay container -->
<div class="overlay_container">
<div class="overlay">
<! -- overlay left -->
<div class="overlay_panel overlay_left_container">
<h2>welcome back!</h2>
<p>To keep connected with us please login with your personal info</p>
<button id="sign-in">sign in</button>
</div>
<! -- overlay right -->
<div class="overlay_panel overlay_right_container">
<h2>hello friend!</h2>
<p>Enter your personal details and start journey with us</p>
<button id="sign-up">sign up</button>
</div>
</div>
</div>
</div>
<script src="./day1.js"></script>
</body>
</html>
Copy the code
There is only HTML and CSS code
Gay people who want to go to my warehouse can download it themselves
Bobo8658 /register-login-page (github.com)
Gitee address: bobo8658/register-login-page (gitee.com)
The last
Click like collection, prevent getting lost oh 😘