Skip to content

Commit

Permalink
Apply stashed changes
Browse files Browse the repository at this point in the history
  • Loading branch information
hk3351 committed Oct 2, 2024
1 parent 7b42733 commit fe7640c
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 16 deletions.
Binary file modified .DS_Store
Binary file not shown.
28 changes: 28 additions & 0 deletions Login.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login - Pageturners</title>
<!-- External CSS Link -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="wrapper login">
<h1>Welcome Back!</h1>
<p>We're excited to see you again!</p>
<form>
<input type="text" placeholder="Enter your username" required>
<input type="password" placeholder="Enter your password" required>
<p class="recover">
<a href="#">Forgot your password?</a>
</p>
</form>
<button type="submit" class="login">Sign in</button>

<div class="not-member">
Not a member yet? <a href="register.html">Register now</a>
</div>
</div>
</body>
</html>
34 changes: 18 additions & 16 deletions register.html
Original file line number Diff line number Diff line change
@@ -1,24 +1,26 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Register</title>
<link rel="stylesheet" href="styles.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Register - Pageturners</title>
<!-- External CSS Link -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Create an Account</h1>
<form action="TBD" method="TBD">
<label for="username">Username:</label>
<input type="text" id="username" name="username" required>

<label for="email">Email:</label>
<input type="email" id="email" name="email" required>

<label for="password">Password:</label>
<input type="password" id="password" name="password" required>

<button type="submit">Register</button>
<div class="wrapper register">
<h1>Join Pageturners!</h1>
<p>Sign up and be a part of our book-loving community!</p>
<form>
<input type="text" placeholder="Enter your username" required>
<input type="email" placeholder="Enter your email" required>
<input type="password" placeholder="Create a password" required>
</form>
<button type="submit" class="register">Register</button>

<div class="not-member">
Already a member? <a href="login.html">Login here</a>
</div>
</div>
</body>
</html>

0 comments on commit fe7640c

Please sign in to comment.