1. MAIN SCREEN SIGN PAGE
<!DOCTYPE html>
<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>Sign up Page</title>
<link rel="stylesheet" href="css\style.css">
<style>
body
{
background-repeat:no-repeat;
background-attached: fixed;
background-size:cover;
background-image:url(image/bk.jpg)
}
</style>
</head>
<body>
<div class="container">
<div class="wrapper">
<img src="image\logo.png" alt="A.I. Logo"class="logo">
<div class="form-container signup">
<h3>CREATE AN ACCOUNT</h3>
<form action="" class="form">
<form action="" class="form">
<input type="text" placeholder="First Name">
<input type="text" placeholder="Last Name">
<input type="text" placeholder="Email Address">
<input type="text" placeholder="Password">
<input type="text" placeholder="Confirm Password">
<button>START <span class="fa fa-arrow-right"></span></button>
</form>
<p>Already have an account? <a class="navigate-btn" href="html signup.html">Login here</a></p>
</div>
</div>
</div>
</body>
</html>
1 COPY CODE and save as main.html
2. SIGN UP PAGE
<!DOCTYPE html>
<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 Page</title>
<link rel="stylesheet" href="css\style.css">
<style>
body
{
background-repeat:no-repeat;
background-attached: fixed;
background-size:cover;
background-image:url(image/bk.jpg)
}
</style>
</head>
<body>
<div class="container">
<div class="wrapper">
<img src="image\logo.png" alt="A.I. Logo" class="logo">
<div class="form-container">
<h3>LOGIN HERE</h3>
<form action="" class="form">
<form action="" class="form">
<input type="text" placeholder="Email address">
<input type="text" placeholder="Password">
<a class="navigate-btn" href="#">forgot password</a>
<button>LOGIN <span class="fa fa-paper-plane"></span></button>
</form>
<p>Don't have an account yet? <a class="navigate-btn" href="mainsign.html">Create an account here</a></p>
</div>
</div>
</div>
</body>
</html>
2nd COPY CODE AND SAVE AS SIGNUP.HTML
3. STYLE PAGE in css
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
.container {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.logo {
height: 100px;
width: auto;
}
.wrapper {
width: 95%;
max-width: 400px;
background: #121212d8;
padding: 40px 40px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.form-container {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
width: 80%;
}
.form {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
width: 100%;
}
.form-container h3 {
font-size: 33px;
font-weight: bold;
color: #21b6cf;
font-family: 'Roboto', sans-serif;
margin: 5px 0 10px 0;
}
.form-container .form input {
height: 40px;
background: none;
color: #f8f9fa;
border: 2px solid #21b6cf;
border-radius: 15px;
width: 100%;
margin: 8px 0;
padding: 0 10px;
}
.form-container a {
color: white;
text-decoration: none;
}
.form-container form button {
background: none;
padding: 8px 16px;
border-color: #21b6cf;
font-weight: 600;
border-radius: 15px;
color: white;
margin: 15px 0;
}
.form-container p {
color: white;
text-align: center;
}
.form-container .navigate-btn:hover{
color: #21b6cf;
}
.signup h3 {
font-size: 25px;
}
3RD COPY CODE AND SAVE AS STYLE.CSS
IMAGES USED IN WEB PAGE.
0 Comments