Skip to content

Commit

Permalink
minor change to password info
Browse files Browse the repository at this point in the history
  • Loading branch information
Csaern committed Dec 3, 2024
1 parent 56500cb commit 1f9dd7e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions client/src/components/Login/RegisterForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -209,11 +209,11 @@ async function submit() {
autocomplete="new-password"
required
/>
<!-- password guidelines -->
<!-- Password Guidelines -->
<BButton variant="info" class="mt-3" @click="showPasswordGuidelines = true">
Password Guidelines
</BButton>
<!-- strength bar -->
<!-- Strength Bar -->
<div v-if="passwordStrength !== null" class="password-strength-bar-container mt-2">
<div
class="password-strength-bar"
Expand All @@ -222,7 +222,7 @@ async function submit() {
></div>
</div>

<!--password strength component -->
<!--Password Strength Component -->
<div :class="['password-strength', passwordStrength]" class="mt-2">
<span v-if="passwordStrength === 'empty'"></span>
<span v-else-if="passwordStrength === 'weak'">Weak Password</span>
Expand Down Expand Up @@ -297,7 +297,7 @@ async function submit() {
<BModal v-model="showPasswordGuidelines" title="Tips for a secure Password">
<p>A good password should meet the following criteria:</p>
<ul>
<li>At east 12 characters long.</li>
<li>At least 12 characters long.</li>
<li>Use uppercase and lowercase letters.</li>
<li>At least one number and one special character.</li>
<li>Avoid common passwords like <code>123456</code> or <code>password</code>.</li>
Expand Down

0 comments on commit 1f9dd7e

Please sign in to comment.