forked from PriyaGhosal/SkillWise
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6faba7d
commit bd34173
Showing
4 changed files
with
153 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"liveServer.settings.port": 5501 | ||
"liveServer.settings.port": 5502 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |