NIHVIVO-2280: Styled 'user account EDIT' page, and added breadcrumbs.
This commit is contained in:
parent
b4891d2139
commit
31136651d8
1 changed files with 7 additions and 7 deletions
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
<#-- Template for editing a user account -->
|
<#-- Template for editing a user account -->
|
||||||
|
|
||||||
<h3>Edit account</h3>
|
<h3><a class="account-menu" href="accountsAdmin">User accounts</a> > Edit account</h3>
|
||||||
|
|
||||||
<#if errorEmailIsEmpty??>
|
<#if errorEmailIsEmpty??>
|
||||||
<#assign errorMessage = "You must supply an email address." />
|
<#assign errorMessage = "You must supply an email address." />
|
||||||
|
@ -53,13 +53,13 @@
|
||||||
|
|
||||||
<form method="POST" action="${formUrls.edit}" class="customForm" role="edit account">
|
<form method="POST" action="${formUrls.edit}" class="customForm" role="edit account">
|
||||||
<label for="email-address">Email address<span class="requiredHint"> *</span></label>
|
<label for="email-address">Email address<span class="requiredHint"> *</span></label>
|
||||||
<input type="text" name="emailAddress" value="${emailAddress}" id="email-address" role="input "/>
|
<input type="text" name="emailAddress" value="${emailAddress}" id="email-address" role="input" />
|
||||||
|
|
||||||
<label for="first-name">First name<span class="requiredHint"> *</span></label>
|
<label for="first-name">First name<span class="requiredHint"> *</span></label>
|
||||||
<input type="text" name="firstName" value="${firstName}" id="first-name" role="input "/>
|
<input type="text" name="firstName" value="${firstName}" id="first-name" role="input" />
|
||||||
|
|
||||||
<label for="last-name">Last name<span class="requiredHint"> *</span></label>
|
<label for="last-name">Last name<span class="requiredHint"> *</span></label>
|
||||||
<input type="text" name="lastName" value="${lastName}" id="last-name" role="input "/>
|
<input type="text" name="lastName" value="${lastName}" id="last-name" role="input" />
|
||||||
|
|
||||||
<p>Roles<span class="requiredHint"> *</span> </p>
|
<p>Roles<span class="requiredHint"> *</span> </p>
|
||||||
<#list roles as role>
|
<#list roles as role>
|
||||||
|
@ -70,13 +70,13 @@
|
||||||
|
|
||||||
<#if !emailIsEnabled??>
|
<#if !emailIsEnabled??>
|
||||||
<label for="new-password">New password<span class="requiredHint"> *</span></label>
|
<label for="new-password">New password<span class="requiredHint"> *</span></label>
|
||||||
<input type="password" name="newPassword" value="${newPassword}" id="new-password" role="input "/>
|
<input type="password" name="newPassword" value="${newPassword}" id="new-password" role="input" />
|
||||||
|
|
||||||
<p>Minimum of ${minimumLength} characters in length.</p>
|
<p>Minimum of ${minimumLength} characters in length.</p>
|
||||||
<p>Leaving this blank means that the password will not be changed.</p>
|
<p>Leaving this blank means that the password will not be changed.</p>
|
||||||
|
|
||||||
<label for="confirm-password">Confirm initial password<span class="requiredHint"> *</span></label>
|
<label for="confirm-password">Confirm initial password<span class="requiredHint"> *</span></label>
|
||||||
<input type="text" name="confirmPassword" value="${confirmPassword}" id="confirm-password" role="input "/>
|
<input type="text" name="confirmPassword" value="${confirmPassword}" id="confirm-password" role="input" />
|
||||||
</#if>
|
</#if>
|
||||||
|
|
||||||
<p>Associate a profile with this account</p>
|
<p>Associate a profile with this account</p>
|
||||||
|
@ -98,7 +98,7 @@
|
||||||
</p>
|
</p>
|
||||||
</#if>
|
</#if>
|
||||||
|
|
||||||
<input type="submit" name="submitEdit" value="Save changes" class="submit"/> or <a href="${formUrls.list}">Cancel</a>
|
<input type="submit" name="submitEdit" value="Save changes" class="submit" /> or <a class="cancel" href="${formUrls.list}">Cancel</a>
|
||||||
|
|
||||||
<p class="requiredHint">* required fields</p>
|
<p class="requiredHint">* required fields</p>
|
||||||
</form>
|
</form>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue