Add support for temp usernames and an interstitial to confirm username
When a user now logs in for the first time for any external auth (LDAP, JWT, Keystone, Github, Google, Dex), they will be presented with a confirmation screen that affords them the opportunity to change their Quay-assigned username. Addresses most of the user issues around #74
This commit is contained in:
parent
840ea4e768
commit
1e3b354201
18 changed files with 388 additions and 24 deletions
25
static/css/pages/update-user.css
Normal file
25
static/css/pages/update-user.css
Normal file
|
@ -0,0 +1,25 @@
|
|||
.update-user p {
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.update-user .username-status {
|
||||
margin-left: 10px;
|
||||
font-size: 125%;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.update-user .username-status .fa {
|
||||
margin-right: 4px;
|
||||
}
|
||||
|
||||
.update-user i.fa-exclamation-triangle {
|
||||
color: #FCA657;
|
||||
}
|
||||
|
||||
.update-user i.fa-check-circle {
|
||||
color: #2FC98E;
|
||||
}
|
||||
|
||||
.update-user i.fa-ban {
|
||||
color: #D64456;
|
||||
}
|
Reference in a new issue