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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 22 additions & 0 deletions Easy/Regen_Task1/login.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="box">
<h2> Login Here! </h2>
<form action="login.php" method="post">
<input type="text" name="username" placeholder="Enter Username here"> <br> <br>
<input type="password" name="password" placeholder="Enter password"> <br> <br>
<button type="submit"> Log In </button>
</form>
</div>
<div class="signup">
<h4>Don't have an account? Sign up <a href="signup.html"> here</a></h4>
</div>

</body>
</html>
23 changes: 23 additions & 0 deletions Easy/Regen_Task1/signup.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="box">
<h2> Sign Up Here! </h2>
<form action="signup.php" method="post">
<input type="text" name="username" placeholder="Enter Username here"> <br> <br>
<input type="password" name="password" placeholder="Enter password"> <br>
<input type="password" name="password" placeholder="Confirm password"> <br> <br>
<button type="submit"> Sign up </button>
</form>
</div>
<div class="signup">
<h4>Already have an account? Log in <a href="login.html"> here</a></h4>
</div>

</body>
</html>
54 changes: 54 additions & 0 deletions Easy/Regen_Task1/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
* {
background-color: #F6D8AE;
font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

#box {
align-content: center;
width:300px;
margin: 100px auto;
padding:20px;
background-color: #2E4057;
border-radius:5px;
border-width: 100px;
border-color: azure;
text-align: center;
box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

input{
width: 80%;
padding: 10px;
margin: 10px 0;
background-color: aliceblue;
color:black;
}

button {
padding: 10px 20px;
background-color: #95B8D1;
cursor:pointer;
border-radius: 5px;;
}

button:hover {
background-color:#55809e;
}

form {
background-color: #2E4057;
}

h2 {
background-color: #2E4057;
color: aliceblue;
}

.signup h4 {
text-align: center;
font-weight: normal;
margin-top: 20px;
}
.signup a:hover {
text-decoration: underline;
}