Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue #2 resolved #239

Merged
merged 1 commit into from
Oct 24, 2022
Merged
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
31 changes: 31 additions & 0 deletions Swastik/Login_Form/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<!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">
<link rel="stylesheet" href="styles.css">
<title>Sign In to continue</title>
</head>
<body>
<div class="login-page">
<div class="form">
<div class="login">
<div class="login-header">
<b>Sign In</b>
<br><br>

<p>Enter your credentials</p>
</div>
</div>
<form class="login-form">
<input type="text" placeholder="U s e r n a m e"/>
<input type="password" placeholder="P a s s w o r d"/>
<button>Sign In</button>
<p class="message">Not account yet? <a href="#">Sign Up</a></p>
</form>
</div>
</div>
</body>
</body>
</html>
Binary file added Swastik/Login_Form/my.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
99 changes: 99 additions & 0 deletions Swastik/Login_Form/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: sans-serif;
}
header .header{
background-color: #fff;
height: 45px;
}
header a img{
width: 134px;
margin-top: 4px;
}
.login-page {
width: 360px;
padding: 8% 0 0;
margin: auto;
}
.login-page .form .login{
margin-top: -31px;
margin-bottom: 69px;
}
.form {
position: relative;
z-index: 1;
background: #cc82e8;
max-width: 360px;
margin: 0 auto 100px;
padding: 49px;
text-align: center;
box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.2), 0 20px 20px 0 rgba(14, 14, 14, 0.24);
border-radius: 5px;
opacity: 0.69;
}
.form input {
font-family: "Roboto", sans-serif;
outline: 0;
background: #cbc5c8;
width: 100%;
border: 0;
margin: 0 0 16px;
padding: 18px;
box-sizing: border-box;
font-size: 14px;
display: flex;
}
.form button {
font-family: sans-serif;
text-transform: uppercase;
background-color: #694a4a;
background-image: linear-gradient(#000000,#7b4133);
width: 100%;
border: 0;
padding: 15px;
color: #FFFFFF;
font-size: 14px;
-webkit-transition: all 0.3 ease;
transition: all 0.3 ease;
cursor: pointer;
border-radius: 3px;
box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 8px 8px 0 rgba(14, 14, 14, 0.24);
}
button:hover{
background-size: cover;
}
.form .message {
margin: 15px 0 0;
color: #faf6f6;
font-size: 12px;
}
.form .message a {
color: #000000;
text-decoration: none;
}

.container {
position: relative;
z-index: 1;
max-width: 300px;
margin: 0 auto;
}

/* body {
background: linear-gradient(60deg,#cc2b5e,#753a88);
background-color: linear-gradient(60deg,#cc2b5e,#753a88);

} */
body{
display: flex;
margin: 0;
padding: 0;
box-sizing: border-box;
background: url(my.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}