took the pwd and conf pwd fields out of the table element and vertically stacked them
This commit is contained in:
parent
4736eadd71
commit
750c8f456e
2 changed files with 10 additions and 27 deletions
|
@ -80,21 +80,12 @@
|
|||
</p>
|
||||
<#else>
|
||||
<div id="passwordContainer">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<label for="initial-password">Initial password<span class="requiredHint"> *</span></label>
|
||||
<input type="password" name="initialPassword" value="${initialPassword}" id="initial-password" role="input" />
|
||||
</td>
|
||||
<td> </td>
|
||||
<td>
|
||||
<label for="confirm-password">Confirm initial password<span class="requiredHint"> *</span></label>
|
||||
<input type="password" name="confirmPassword" value="${confirmPassword}" id="confirm-password" role="input" />
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<label for="initial-password">Initial password<span class="requiredHint"> *</span></label>
|
||||
<input type="password" name="initialPassword" value="${initialPassword}" id="initial-password" role="input" />
|
||||
<p class="explanatoryText" style="margin-top:-8px">Minimum of ${minimumLength} characters in length.</p>
|
||||
<label for="confirm-password">Confirm initial password<span class="requiredHint"> *</span></label>
|
||||
<input type="password" name="confirmPassword" value="${confirmPassword}" id="confirm-password" role="input" />
|
||||
</div>
|
||||
</#if>
|
||||
|
||||
|
|
|
@ -87,21 +87,13 @@
|
|||
</div>
|
||||
<#else>
|
||||
<div id="passwordContainer" <#if externalAuthOnly?? >class="hidden"</#if> >
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<label for="new-password">New password<span class="requiredHint"> *</span></label>
|
||||
<input type="password" name="newPassword" value="${newPassword}" id="new-password" role="input" />
|
||||
</td>
|
||||
<td> </td>
|
||||
<td>
|
||||
<label for="confirm-password">Confirm new password<span class="requiredHint"> *</span></label>
|
||||
<input type="password" name="confirmPassword" value="${confirmPassword}" id="confirm-password" role="input" />
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<label for="new-password">New password</label>
|
||||
<input type="password" name="newPassword" value="${newPassword}" id="new-password" role="input" />
|
||||
<p class="explanatoryText" style="margin-top:-8px">Minimum of ${minimumLength} characters in length.</p>
|
||||
<p class="explanatoryText">Leaving this blank means that the password will not be changed.</p>
|
||||
<label for="confirm-password">Confirm new password</label>
|
||||
<input type="password" name="confirmPassword" value="${confirmPassword}" id="confirm-password" role="input" />
|
||||
</div>
|
||||
</#if>
|
||||
<br />
|
||||
|
|
Loading…
Add table
Reference in a new issue