I have to hide the fields password and verify password from UI screen and assign a default password xyz for the new users created. Please suggest how I can do that in the below snippet:
<div class="field-row">
<span class="crud-label">${msg("bel.password")}: *</span>
</div>
<div class="field-row" type="hidden">
<input class="crud-input" id="${el}-create-password" type="password" maxlength="100" />
</div>
<div class="field-row">
<span class="crud-label">${msg("label.rifypassword")}: *</span>
</div>
<div class="field-row" type="hidden">
<input class="crud-input" id="${el}-create-verifypassword" type="password" maxlength="100" />
</div>