Open Trisha-tech opened 1 year ago
Hi everyone! I've designed a basic HTML login form with fields for Email and Password. You can find the code below:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login</title>
<style>
/* Basic styling for demonstration purposes */
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
padding: 20px;
}
.container {
max-width: 400px;
margin: 0 auto;
background-color: #fff;
padding: 20px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.form-group {
margin-bottom: 20px;
}
label {
font-weight: bold;
}
input[type="email"],
input[type="password"] {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
box-sizing: border-box;
}
input[type="submit"] {
width: 100%;
padding: 10px;
background-color: #007bff;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
}
input[type="submit"]:hover {
background-color: #0056b3;
}
</style>
</head>
<body>
<div class="container">
<h2>Login</h2>
<form id="loginForm" action="/login" method="POST">
<div class="form-group">
<label for="email">Email</label>
<input type="email" id="email" name="email" required>
</div>
<div class="form-group">
<label for="password">Password</label>
<input type="password" id="password" name="password" required>
</div>
<div class="form-group">
<input type="submit" value="Login">
</div>
</form>
</div>
</body>
</html>
Could you please assign this task to me? I'm eager to contribute to the project by implementing the Login Page UI. Looking forward to your response!
Hello @sadvika05 , Go for it. All the Best
Hey @Trisha-tech Can you also assign this issue to me under GSSOC 2024 please?
Hey @Trisha-tech
can you assign this issue to me ,i make for you login page like this with functionality
Hello @Trisha-tech Ma'am I would like to work on this issue. Login page will look like this Insted 0f Name, Email, Phone Number there will be Email and Password .
Hey @Trisha-tech can you assign this issue to me ,i make for you login page like this with functionality
Hello @Varsani2520 , Go for it All the Best
thank you @Trisha-tech ,i ll give my best
@Trisha-tech can you assign this issue to me under Gssoc'24
The login page will look like this. I will made this using tailwind css. Could you please assign to me ?
@Trisha-tech i Completed Design a Login Page UI ,you can merged it my PR
@Trisha-tech is this issue got closed? because I can see login and signup pages are already present right now did they get added or now i made it should i make a pull request my committing??
Hey @Trisha-tech ,actually Login Page and register UI with backend functionality
you forgot the merged and close this issue
i created this login and register page : here is a proof: you can closed this issue ,actually maybe you merged it my PR
Hey @Trisha-tech ,actually Login Page and register UI with backend functionality
you forgot the merged and close this issue
i created this login and register page : here is a proof: you can closed this issue ,actually maybe you merged it my PR
Hello @Varsani2520 , I have merged your PR. Kindly check
The project requires a Login page.
Design a Login Page UI which contains the following fields:
For more details, refer to following: https://github.com/Trisha-tech/OnlineBookSales/blob/master/controllers/customerController.js