remove whitespace from the username
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -3,3 +3,4 @@
|
||||
.sonarlint
|
||||
.idea
|
||||
.docker-compose
|
||||
helm
|
||||
|
||||
11
README.md
11
README.md
@@ -10,14 +10,3 @@ Special thanks for reference [GOV.UK](https://github.com/UKHomeOffice/keycloak-t
|
||||
|
||||

|
||||
|
||||
|
||||
## TODO
|
||||
|
||||
- [ ] Login
|
||||
- [x] Login
|
||||
- [x] Register
|
||||
- [x] Reset password
|
||||
- [ ] TOTP
|
||||
- [ ] OAuth Grant
|
||||
- [ ] Config TOTP
|
||||
- [ ] Account
|
||||
|
||||
@@ -24,11 +24,11 @@
|
||||
<#if usernameEditDisabled??>
|
||||
<input tabindex="1" id="username" class="${properties.kcInputClass!}" name="username"
|
||||
value="${(login.username!'')}" type="text" disabled
|
||||
placeholder="<#if !realm.loginWithEmailAllowed>${msg("username")} <#elseif !realm.registrationEmailAsUsername> ${msg("usernameOrEmail")} <#else> ${msg("email")} </#if>"/>
|
||||
placeholder="<#if !realm.loginWithEmailAllowed>${msg("username")}<#elseif !realm.registrationEmailAsUsername>${msg("usernameOrEmail")}<#else>${msg("email")}</#if>"/>
|
||||
<#else>
|
||||
<input tabindex="1" id="username" class="${properties.kcInputClass!}" name="username"
|
||||
value="${(login.username!'')}" type="text" autofocus
|
||||
placeholder="<#if !realm.loginWithEmailAllowed>${msg("username")} <#elseif !realm.registrationEmailAsUsername> ${msg("usernameOrEmail")} <#else> ${msg("email")} </#if>" autocomplete="off"/>
|
||||
placeholder="<#if !realm.loginWithEmailAllowed>${msg("username")}<#elseif !realm.registrationEmailAsUsername>${msg("usernameOrEmail")}<#else>${msg("email")}</#if>" autocomplete="off"/>
|
||||
</#if>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user