add in simple password progress bar
This commit is contained in:
@@ -9,10 +9,11 @@
|
||||
<link rel="stylesheet" href="static/card.css" />
|
||||
<link rel="stylesheet" href="static/error/error.css" />
|
||||
<link rel="stylesheet" href="static/profile_page.css" />
|
||||
<link rel="stylesheet" href="static/progress_bar.css" />
|
||||
|
||||
<div id="popup_background" class="blocked hidden"></div>
|
||||
<div id="popup_background" class="blocked"></div>
|
||||
|
||||
<div id="change_password_dialogue" class="hidden card static_center">
|
||||
<div id="change_password_dialogue" class="card static_center">
|
||||
Change Password
|
||||
|
||||
<button id="close_password_dialogue">X</button>
|
||||
@@ -57,6 +58,13 @@
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<label class="input_label">Strength: Weak</label><br />
|
||||
<div class="progress-bar">
|
||||
<div class="progress-bar-progress" style="width: 50%"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<button id="final_change_password_button">Change Password</button>
|
||||
</div>
|
||||
|
||||
|
||||
12
static/progress_bar.css
Normal file
12
static/progress_bar.css
Normal file
@@ -0,0 +1,12 @@
|
||||
.progress-bar {
|
||||
width: 100%;
|
||||
background-color: var(--bg-input);
|
||||
height: 20px;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
.progress-bar-progress {
|
||||
background-color: blue;
|
||||
height: 20px;
|
||||
border-radius: 10px;
|
||||
}
|
||||
Reference in New Issue
Block a user