Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Sign Up Page #192

Merged
merged 1 commit into from
Oct 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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>