WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
125 changes: 125 additions & 0 deletions login and signup form/new_login_form.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,125 @@
@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Open+Sans&display=swap");

html {
scroll-behavior: smooth;
}
body {
/* background-color: linear-gradient(to bottom right, #e84393 0%, #000000 74%); */

background-image: linear-gradient(to bottom right, #e84393 0%, #000000 74%);
width: 100vw;
height: 100vh;
overflow: hidden;
}

form {
display: flex;
flex-direction: column;
border: 2px solid black;
text-align: center;
align-items: left;
padding-top: 10px;
width: 300px;
height: 470px;
border-radius: 5px;
background-color: white;

/* background-image: linear-gradient(315deg, #e84393 0%, #000000 74%); */
}
.form {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
p input {
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
border-radius: 4px;
padding: 5px;
}

/* button */ /* button */ /* button */ /* button */ /* button */ /* button */ /* button */ /* button *button /* button *
/* button */ /* button */ /* button */ /* button */ /* button */ /* button */ /* button */ /* button *button /* button *
/* button */ /* button */ /* button */ /* button */ /* button */ /* button */ /* button */ /* button */ /* button */
.signupbutton {
border: none;
border-radius: 5px;
width: 70px;
height: 20px;
margin: auto;
background-color: rgb(0, 0, 0);
color: white;
margin-bottom: 20px;
}

.signupbutton:hover {
color: turquoise;
}
.signupbutton:active {
border: 2px solid white;
transform: scale(0.98);
}

.checkbox {
opacity: 0;
}

#checkbox:checked ~ .login {
opacity: 100%;
transform: translateY(-243px);
}

/* .beyform {

width: 100vw;
height: 100vh;
overflow: hidden;
background-image: linear-gradient(to bottom right, #e84393 0%, #000000 74%); */
/* } */
.signup {
position: absolute;

overflow: hidden;
}

.login {
opacity: 0;
position: absolute;
height: 300px !important ;
left: 616px;
margin-right: 100px;
transform: translateY(210px);
transition: 1s ease-in-out;
}

.loginform {
display: flex;
flex-direction: column;
border: 2px solid black;
text-align: center;
align-items: left;
padding-top: 10px;
width: 300px;
height: 472px;
border-radius: 5px;
background-color: white;

/* background-image: linear-gradient(315deg, #e84393 0%, #000000 74%); */
}
/* .aakhu{
border: 2px solid white;
height: 50vh;
} */
.logininstead {
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

label {
cursor: pointer;
}

label:hover {
color: turquoise;
}
71 changes: 71 additions & 0 deletions login and signup form/new_login_form.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
<!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 form</title>
<link rel="stylesheet" href="new_login_form.css" />
</head>
<body>
<div class="aakhu">
<!-- aakhu first form -->
<input
type="checkbox"
name=""
id="checkbox"
class="checkbox"
aria-hidden="true"
/>
<div class="form signup">
<form action="">
<label class="logininstead" for="checkbox"><h4>already a member? Login </h4></label>
<h1>Sign up</h1>


<!-- Name -->
<p class="name">
<input type="text" name="name" placeholder="Name" />
</p>
<!-- email -->
<p class="email">
<input type="email" name="email" placeholder="Enter Email" />
</p>
<!-- password -->
<p class="password">
<input type="password" placeholder="Enter password" />
</p>
<!-- confirm password -->
<p class="confirmpassword">
<input type="password" placeholder=" Confirm password" />
</p>
<!-- login button -->
<button class="signupbutton">Sign up</button>
</form>
</div>

<!-- login --><!-- login --><!-- login --><!-- login --><!-- login --><!-- login --><!-- login -->
<!-- login --><!-- login --><!-- login --><!-- login --><!-- login --><!-- login --><!-- login -->
<!-- login --><!-- login --><!-- login --><!-- login --><!-- login --><!-- login --><!-- login -->
<div class="form login">
<form class="loginform" action="">

<h1> Login</h1>

<!-- email -->
<p class="email">
<input type="email" name="email" placeholder="Enter Email" />
</p>
<!-- password -->
<p class="password">
<input type="password" placeholder="Enter password" />
</p>

<!-- login button -->
<button class="signupbutton">login</button>
<label class="logininstead" for="checkbox"><h4>Not a Member yet? Signup</h4></label>
</form>
</div>
</div>
</body>
</html>