label on externalAuthID field will now change depending on whether the matching property is being used or not

This commit is contained in:
tworrall 2011-07-15 16:41:55 +00:00
parent da3e14a799
commit 10b1d1e57d

View file

@ -7,10 +7,16 @@ ${stylesheets.add('<link rel="stylesheet" href="${urls.base}/edit/forms/css/auto
<div id="associateProfileBackgroundOne">
<div style="margin-left:8px">
<label for="externalAuthId">External Auth. ID / Matching ID</label>
<#if showAssociation??>
<label for="externalAuthId">External Auth. ID / Matching ID</label>
<input type="text" name="externalAuthId" value="${externalAuthId}" id="externalAuthId" role="input "/>
<span id="externalAuthIdInUse" style="display: none;" >This Identifier is already in use.</span>
<p class="explanatoryText" style="margin-top:-8px">Can be used to associate the account with the user's profile via the matching property.</p>
<#else>
<label for="externalAuthId">External Authentication ID</label>
<input type="text" name="externalAuthId" value="${externalAuthId}" id="externalAuthId" role="input "/>
<span id="externalAuthIdInUse" style="display: none;" >This Identifier is already in use.</span>
</#if>
</div>
</div>
<#-- If there is an associated profile, show these -->