Skip to content

Commit

Permalink
Fixes issue PriyaGhosal#232
Browse files Browse the repository at this point in the history
  • Loading branch information
SinghaAnirban005 committed Oct 4, 2024
1 parent 6faba7d commit bd34173
Show file tree
Hide file tree
Showing 4 changed files with 153 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"liveServer.settings.port": 5501
"liveServer.settings.port": 5502
}
109 changes: 109 additions & 0 deletions assets/css/signup.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,109 @@
/* CSS for SkillWise Sign Up Page */

body {
font-family: Arial, sans-serif;
background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecf6d 100%);
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}

.container {
width: 100%;
max-width: 400px;
background-color: #fff;
padding: 30px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
border-radius: 8px;
}

.form-container {
text-align: center;
}

.logo {
width: 100px;
margin-bottom: 20px;
}

h1 {
font-size: 2rem;
margin-bottom: 10px;
}

.brand {
color: #f77c80;
}

p {
margin-bottom: 20px;
color: #666;
}

.input-group {
margin-bottom: 15px;
text-align: left;
}

.input-group label {
display: block;
margin-bottom: 5px;
color: #333;
}

.input-group input {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}

.signup-btn {
width: 100%;
padding: 10px;
background-color: #f77c80;
color: #fff;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 1rem;
transition: background-color 0.3s ease;
}

.signup-btn:hover {
background-color: #d95a6e;
}


/* Responsive Design */
@media (max-width: 600px) {
.container {
padding: 15px;
}

.logo {
width: 80px;
}

h1 {
font-size: 1.5rem;
}

.signup-btn {
font-size: 0.9rem;
padding: 8px;
}

p {
font-size: 0.9rem;
}

.input-group input {
padding: 8px;
}
}

2 changes: 1 addition & 1 deletion signin.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ <h1>Welcome to <span class="brand">SkillWise</span></h1>
<input type="password" id="password" name="password" placeholder="Enter your password" required>
</div>
<button type="submit" class="signin-btn">Sign In</button>
<p class="signup-link">Don't have an account? <a href="#">Sign up here</a></p>
<p class="signup-link">Don't have an account? <a href="/signup.html">Sign up here</a></p>
</form>
</div>
</div>
Expand Down
42 changes: 42 additions & 0 deletions signup.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SkillWise - Sign Up</title>
<link rel="stylesheet" href="assets/css/signup.css">
</head>
<body>
<div class="container">
<div class="form-container">

<img src="assets/images/Skillwise_logo.jpg" alt="SkillWise Logo" class="logo">

<h1>SignUp to <span class="brand">SkillWise</span></h1>
<p>Join now to start your learning journey !</p>

<form action="#" method="POST">
<div class="input-group">
<label for="fullName">Full Name</label>
<input type="text" id="fullName" name="fullName" placeholder="Enter your Full Name" required>
</div>
<div class="input-group">
<label for="username">Username</label>
<input type="text" id="username" name="username" placeholder="Enter a unique username" required>
</div>
<div class="input-group">
<label for="email">Email</label>
<input type="email" id="email" name="email" placeholder="Enter your email" required>
</div>
<div class="input-group">
<label for="password">Password</label>
<input type="password" id="password" name="password" placeholder="Set your password" required>
</div>

<button type="submit" class="signup-btn">Sign Up</button>

</form>
</div>
</div>
</body>
</html>

0 comments on commit bd34173

Please sign in to comment.