Skip to content

Commit

Permalink
added signup page and organized pages PriyaGhosal#252
Browse files Browse the repository at this point in the history
  • Loading branch information
srinivasthedeveloper committed Oct 5, 2024
1 parent d048910 commit 3142689
Show file tree
Hide file tree
Showing 7 changed files with 84 additions and 42 deletions.
2 changes: 1 addition & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"recommendations": ["esbenp.prettier-vscode"]
"recommendations": ["esbenp.prettier-vscode", "ritwickdey.LiveServer"]
}
9 changes: 5 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
<!-- Animation on Scroll -->
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />

<body >
<body>

<!--
- PRELOADER
Expand Down Expand Up @@ -73,6 +73,7 @@

<div class="navbar-top">

<a>
<img src="./assets/images/Skillwise_logo.jpg" width="50" height="10" alt="SkillWise home">
</a>

Expand Down Expand Up @@ -100,8 +101,8 @@
<a href="#contact" class="navbar-link title-sm" data-nav-link>Contacts</a>
</li>

<li class="navbar-item"></li>
<a href="./Faq.html" class="navbar-link title-sm" data-nav-link>FAQ</a>
<li class="navbar-item">
<a href="./page/Faq.html" class="navbar-link title-sm" data-nav-link>FAQ</a>
</li>

</ul>
Expand Down Expand Up @@ -143,7 +144,7 @@



<a href="./signin.html" class="btn btn-secondary">Start Free Trial</a>
<a href="./pages/signin.html" class="btn btn-secondary">Start Free Trial</a>

<button class="nav-open-btn" aria-label="open menu" data-nav-toggler>
<ion-icon name="menu-outline" aria-hidden="true"></ion-icon>
Expand Down
File renamed without changes.
37 changes: 37 additions & 0 deletions pages/signin.html
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>
41 changes: 41 additions & 0 deletions pages/signup.html
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.
37 changes: 0 additions & 37 deletions signin.html

This file was deleted.

0 comments on commit 3142689

Please sign in to comment.