Skip to content

Commit

Permalink
Merge pull request #796 from Ishika-Gupta06/passwordStrength
Browse files Browse the repository at this point in the history
strong password recommendation
  • Loading branch information
vimistify authored Oct 18, 2024
2 parents 82e3f55 + 691b7d7 commit 87b004b
Showing 1 changed file with 103 additions and 2 deletions.
105 changes: 103 additions & 2 deletions up.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
<!-- <!DOCTYPE html>
<html lang="en">
<head>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Register & Login</title>
<link rel="stylesheet" href="src/css/up.css" />
<link rel="shortcut icon" href="ambulance.png" type="image/x-icon">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" />
</head>
<body>
<link rel="stylesheet" href="preloaderStyle.css">
<link rel="stylesheet" href="src/css/up.css" />
<link rel="shortcut icon" href="ambulance.png" type="image/x-icon" />
Expand Down Expand Up @@ -50,7 +57,101 @@
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="container">
<div class="forms-container">
<div class="signin-signup">
<form action="#" class="sign-in-form">
<h2 class="title">Sign in</h2>
<div class="input-field">
<i class="fas fa-user"></i>
<input type="text" placeholder="Username" />
</div>
<div class="input-field">
<i class="fas fa-lock" id="toggle-password"></i>
<input type="password" placeholder="Password" id="password-input" />
</div>
<input type="submit" value="Login" class="btn solid" />
<p class="social-text">Or Sign in with social platforms</p>
<div class="social-media">
<a href="https://www.google.com" target="_blank" class="social-icon">
<i class="fab fa-google" style="font-size: 24px; color: #4285F4;"></i>
</a>
<a href="https://facebook.com/YourPage" target="_blank" class="social-icon">
<i class="fab fa-facebook-f" style="font-size: 24px; color: #4267B2;"></i>
</a>
<a href="https://github.com/YourGitHubProfile" target="_blank" class="social-icon">
<i class="fab fa-github" style="font-size: 24px; color: #333;"></i>
</a>
</div>
</form>
<form action="#" class="sign-up-form">
<h2 class="title">Sign up</h2>
<div class="input-field">
<i class="fas fa-user"></i>
<input type="text" placeholder="Username" />
</div>
<div class="input-field">
<i class="fas fa-envelope"></i>
<input type="email" placeholder="Email" />
</div>
<div class="input-field">
<i class="fas fa-lock" id="toggle-password-signup"></i>
<input type="password" placeholder="Password" id="password-input-signup" />
</div>
<!-- Strong password recommendations -->
<div class="password-recommendations">
<small style="color: red;">* Password must be at least 8 characters long, contain at least one uppercase letter, one lowercase letter, one number, and one special character.</small>
</div>
<input type="submit" class="btn" value="Sign up" />
<p class="social-text">Or Sign up with social platforms</p>
<div class="social-media">
<a href="https://www.google.com" target="_blank" class="social-icon">
<i class="fab fa-google" style="font-size: 24px; color: #4285F4;"></i>
</a>
<a href="https://facebook.com/YourPage" target="_blank" class="social-icon">
<i class="fab fa-facebook-f" style="font-size: 24px; color: #4267B2;"></i>
</a>
<a href="https://github.com/YourGitHubProfile" target="_blank" class="social-icon">
<i class="fab fa-github" style="font-size: 24px; color: #333;"></i>
</a>
</div>
</form>
</div>

<div class="input-field">
<i class="fas fa-lock" id="toggle-password"></i>
<input
type="password"
placeholder="Password"
id="password-input"
/>
</div>
<input type="submit" value="Login" class="btn solid" />
<p class="social-text">Or Sign in with social platforms</p>
<div class="social-media">
<a
href="https://www.google.com"
target="_blank"
class="social-icon"
>
<i
class="fab fa-google"
style="font-size: 24px; color: #4285f4"
></i>
</a>
<a
href="https://facebook.com/YourPage"
target="_blank"
class="social-icon"
>
<i
class="fab fa-facebook-f"
style="font-size: 24px; color: #4267b2"
></i>
</a>

<div class="forms-container">
<div class="signin-signup">
<form action="#" class="sign-in-form">
Expand Down Expand Up @@ -92,6 +193,7 @@ <h2 class="title">Sign in</h2>
>
</i>
</a>

<a
href="https://github.com/YourGitHubProfile"
target="_blank"
Expand Down Expand Up @@ -158,7 +260,6 @@ <h2 class="title">Sign up</h2>
</div>
</form>
</div>
</div>

<div class="panels-container">
<a href="index.html" class="homeBtn">
Expand Down

0 comments on commit 87b004b

Please sign in to comment.