Add attribute to refill value in template

Please refer to [the thread](https://lists.jboss.org/pipermail/keycloak-user/2015-August/002943.html).
This commit is contained in:
Kohei Tamura 2019-06-13 09:45:56 +09:00 committed by Stian Thorgersen
parent b17927c429
commit c856974a06

View file

@ -19,7 +19,7 @@ As an example to add a mobile number to the registration page add the following
</div>
<div class="${properties.kcInputWrapperClass!}">
<input type="text" class="${properties.kcInputClass!}" id="user.attributes.mobile" name="user.attributes.mobile"/>
<input type="text" class="${properties.kcInputClass!}" id="user.attributes.mobile" name="user.attributes.mobile" value="${(register.formData['user.attributes.mobile']!'')}"/>
</div>
</div>
----