Skip to content

Commit

Permalink
Add Sign Up Page
Browse files Browse the repository at this point in the history
  • Loading branch information
UdaySharmaGitHub committed Oct 3, 2024
1 parent 1908697 commit e225e3d
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 2 deletions.
5 changes: 3 additions & 2 deletions signin.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SkillWise - Sign In</title>
<link rel="stylesheet" href="assets/css/signin.css">
<link rel="shortcut icon" href="./favicon.svg" type="image/svg+xml">
</head>
<body>
<div class="container">
Expand All @@ -13,7 +14,7 @@
<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>
<p><strong>Sign in</strong> to access your learning dashboard</p>

<form action="#" method="POST">
<div class="input-group">
Expand All @@ -29,7 +30,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/signin.css">
<link rel="shortcut icon" href="./favicon.svg" type="image/svg+xml">
</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><strong>Sign-Up</strong> to Create your personal learning dashboard Account</p>

<form action="#" method="POST">
<div class="input-group">
<label for="username">Full Name</label>
<input type="text" id="fullname" name="fullname" placeholder="Create your username" required>
</div>
<div class="input-group">
<label for="username">Username</label>
<input type="text" id="username" name="username" placeholder="Create 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">Already have an account? <a href="./signin.html">Sign in here</a></p>
</form>
</div>
</div>
</body>
</html>

0 comments on commit e225e3d

Please sign in to comment.