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.
added signup page and organized pages PriyaGhosal#252
- Loading branch information
1 parent
d048910
commit 3142689
Showing
7 changed files
with
84 additions
and
42 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 @@ | ||
{ | ||
"recommendations": ["esbenp.prettier-vscode"] | ||
"recommendations": ["esbenp.prettier-vscode", "ritwickdey.LiveServer"] | ||
} |
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
File renamed without changes.
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,37 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>SkillWise - Sign In</title> | ||
<link rel="stylesheet" href="../assets/css/signin.css" /> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<div class="form-container"> | ||
<!-- Add SkillWise Icon/Logo --> | ||
<img src="../assets/images/Skillwise_logo.jpg" alt="SkillWise Logo" class="logo" /> | ||
|
||
<h1>Welcome to <span class="brand">SkillWise</span></h1> | ||
<p>Sign in to access your learning dashboard</p> | ||
|
||
<form action="#" method="POST"> | ||
<div class="input-group"> | ||
<label for="username">Username</label> | ||
<input type="text" id="username" name="username" placeholder="Enter your 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="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="./signup.html">Sign up here</a></p> | ||
</form> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |
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,41 @@ | ||
<!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/signin.css" /> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<div class="form-container"> | ||
<!-- Add SkillWise Icon/Logo --> | ||
<img src="../assets/images/Skillwise_logo.jpg" alt="SkillWise Logo" class="logo" /> | ||
|
||
<h1>Welcome to <span class="brand">SkillWise</span></h1> | ||
<p>Sign Up to access your learning dashboard</p> | ||
|
||
<form action="#" method="POST"> | ||
<div class="input-group"> | ||
<label for="username">Username</label> | ||
<input type="text" id="username" name="username" placeholder="Enter your 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">Create Password</label> | ||
<input type="password" id="password" name="password" placeholder="Enter your password" required /> | ||
</div> | ||
<div class="input-group"> | ||
<label for="password">Re-Enter Password</label> | ||
<input type="password" id="password" name="password" placeholder="Re-Enter your password" required /> | ||
</div> | ||
<button type="submit" class="signin-btn">Sign Up</button> | ||
<p class="signup-link">already have an account? <a href="./signin.html">Sign In here</a></p> | ||
</form> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |
File renamed without changes.
This file was deleted.
Oops, something went wrong.