NIHVIVO-2601 Removed displaying entered values for password fields on validation
This commit is contained in:
parent
a1ac1320e9
commit
ae7965b390
1 changed files with 3 additions and 3 deletions
|
@ -36,7 +36,7 @@
|
||||||
</section>
|
</section>
|
||||||
</#if>
|
</#if>
|
||||||
|
|
||||||
<#if ( !newPasswordRequired?? )>
|
<#if !newPasswordRequired??>
|
||||||
<p>Enter the email address and password for your internal Vitro account.</p>
|
<p>Enter the email address and password for your internal Vitro account.</p>
|
||||||
<#else>
|
<#else>
|
||||||
<p>You must change your password to log in.</p>
|
<p>You must change your password to log in.</p>
|
||||||
|
@ -45,12 +45,12 @@
|
||||||
<form method="post" action="${controllerUrl}">
|
<form method="post" action="${controllerUrl}">
|
||||||
<#if newPasswordRequired??>
|
<#if newPasswordRequired??>
|
||||||
<label for="newPassword">New Password</label>
|
<label for="newPassword">New Password</label>
|
||||||
<input name="newPassword" id="newPassword" class="text-field" type="password" value="${newPassword!}" required autofocus />
|
<input name="newPassword" id="newPassword" class="text-field" type="password" required autofocus />
|
||||||
|
|
||||||
<p class="password-note">Minimum of 6 characters in length.</p>
|
<p class="password-note">Minimum of 6 characters in length.</p>
|
||||||
|
|
||||||
<label for="confirmPassword">Confirm Password</label>
|
<label for="confirmPassword">Confirm Password</label>
|
||||||
<input id="confirmPassword" name="confirmPassword" class="text-field" type="password" value="${confirmPassword!}" required />
|
<input id="confirmPassword" name="confirmPassword" class="text-field" type="password" required />
|
||||||
|
|
||||||
<input id="username" name="username" type="hidden" value="${username!}" />
|
<input id="username" name="username" type="hidden" value="${username!}" />
|
||||||
<input id="password" name="password" type="hidden" value="${password!}" />
|
<input id="password" name="password" type="hidden" value="${password!}" />
|
||||||
|
|
Loading…
Add table
Reference in a new issue