Skip to content
Open
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
173 changes: 92 additions & 81 deletions Login Page/signin.html
Original file line number Diff line number Diff line change
@@ -1,88 +1,99 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Login Example</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/Stylesheet/signin.css">
</head>
<body>
<div>
<div class="wave"></div>
<div class="wave"></div>
<div class="wave"></div>
</div>
<div class="login-wrapper">
<div class="login-side">

<div class="my-form__wrapper">
<div class="login-welcome-row">
<h1>Welcome back &#x1F44F;</h1>
<p>Please enter your details!</p>
<head>
<meta charset="UTF-8">
<title>Login Example</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/Stylesheet/signin.css">
</head>

<body>
<div>
<div class="wave" aria-hidden="true"></div>
<div class="wave" aria-hidden="true"></div>
<div class="wave" aria-hidden="true"></div>
</div>

<div class="login-wrapper">
<div class="login-side">
<div class="my-form__wrapper">
<div class="login-welcome-row">
<h1>Welcome back 👏</h1>
<p>Please enter your details!</p>
</div>

<!-- ✅ Added method & action -->
<form class="my-form" method="POST" action="/login">

<div class="socials-row">
<a href="#" role="button" title="Use Google">
<img src="/Images/image22.png" alt="Google logo">
Log in with Google
</a>

<a href="#" role="button" title="Use Apple">
<img class="apple" src="/Images/APPLE2.png" alt="Apple logo">
Log in with Apple
</a>
</div>
<form class="my-form">
<div class="socials-row">
<a
href="#"
title="Use Google"
>
<img src="/Images/image22.png" alt="Google">
Log in with Google
</a>
<a
href="#"
title="Use Apple"
>
<img class="apple" src="/Images/APPLE2.png" alt="Apple">
Log in with Apple

<div class="divider">
<div class="divider-line"></div>
<span>Or</span>
<div class="divider-line"></div>
</div>

<div class="text-field">
<label for="email">Email:</label>
<input
type="email"
id="email"
name="email"
placeholder="Your Email"
autocomplete="email"
required
>
<img class="email" alt="" aria-hidden="true" src="/Images/EMAIL.png">
</div>

<div class="text-field">
<label for="password">Password:</label>
<input
id="password"
type="password"
name="password"
placeholder="Your Password"
autocomplete="current-password"
minlength="6"
pattern="^(?=.*[A-Za-z])(?=.*\d)[A-Za-z\d]{6,}$"
title="Minimum 6 characters, at least 1 letter and 1 number"
required
>
<img class="lock" alt="" aria-hidden="true" src="/Images/PASSWORD.png">
</div>

<button type="submit" class="my-form__button">
Login
</button>

<div class="my-form__actions">
<div class="my-form__row">
<span>Did you forget your password?</span>
<a href="#" title="Reset Password">
Reset Password
</a>
</div>
<div class="divider">
<div class="divider-line"></div>
Or
<div class="divider-line"></div>
</div>
<div class="text-field">
<label for="email">Email:</label>
<input
type="email"
id="email"
name="email"
placeholder="Your Email"
required
>
<img class="email" alt="Email Icon" title="Email Icon" src="/Images/EMAIL.png">
</div>
<div class="text-field">
<label for="password">Password:</label>
<input
id="password"
type="password"
name="password"
placeholder="Your Password"
title="Minimum 6 characters at
least 1 Alphabet and 1 Number"
pattern="^(?=.*[A-Za-z])(?=.*\d)[A-Za-z\d]{6,}$"
required
>
<img class="lock" alt="Password Icon" src="/Images/PASSWORD.png">
</div>
<input type="submit" class="my-form__button" value="Login">
<div class="my-form__actions">
<div class="my-form__row">
<span>Did you forget your password?</span>
<a href="#" title="Reset Password">
Reset Password
</a>
</div>
<div class="my-form__signup">
<a href="#" title="Create Account">
Create Account
</a>
</div>

<div class="my-form__signup">
<a href="#" title="Create Account">
Create Account
</a>
</div>
</form>
</div>
</div>

</div>

</form>
</div>
</div>
</div>
</body>
</html>