Skip to content

Commit ec5821f

Browse files
authored
Merge pull request #859 from fullfrontend/develop
Add a repeat password field and give a visual feedback on the strength
2 parents d81182f + 63e0b21 commit ec5821f

File tree

19 files changed

+537
-92
lines changed

19 files changed

+537
-92
lines changed

common/css/server.css

Lines changed: 0 additions & 4 deletions
This file was deleted.

common/css/solid.css

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
.panel-login-tls,
2+
.panel-already-registered{
3+
text-align: center;
4+
}
5+
6+
/**
7+
* Password Strength
8+
*/
9+
10+
/* Remove the bottom border on the input to make the progress bar like a part of it */
11+
.control-progress{
12+
border-bottom-left-radius: 0;
13+
border-bottom-right-radius: 0;
14+
border-bottom: 0;
15+
}
16+
17+
/* Remove the top border on the progress bar to make the bar part of the input */
18+
.form-group .progress{
19+
border-top-left-radius: 0;
20+
border-top-right-radius: 0;
21+
height: 7px;
22+
margin-bottom: 0;
23+
}
24+
25+
.form-group .progress-bar{
26+
width: 0;
27+
}
28+
29+
/**
30+
* Password strength levels sizes for the progress bar
31+
*/
32+
.progress .level-0{
33+
width: 5%
34+
}
35+
36+
.progress .level-1{
37+
width: 25%;
38+
}
39+
40+
.progress .level-2{
41+
width: 50%;
42+
}
43+
44+
.progress .level-3{
45+
width: 75%;
46+
}
47+
48+
.progress .level-4{
49+
width: 100%;
50+
}

0 commit comments

Comments
 (0)