The checkbox functionality doesn't work properly for ResearchTopicsSharing
The checkbox does not work properly for sharing research topics with the NewUserRegistration.html, ChangeUserInformation.html, and NewAuthRegistration.html pages.
Workaround:
Here's the current code:
<div class="form-check">
<label for="form-checkbox ResearchTopicsSharing">
<span class="<#ERROR name='ERRORResearchTopicsSharing'>">
<input class="form-check-input" type="checkbox" id="ResearchTopicsSharing" <#CHECKED name='ResearchTopicsSharing' default='true'>>May we share your research topics with others?
</span>
</label>
</div>
To fix it she added the 'name="ResearchTopicsSharing" value="Yes"' elements:
<div class="form-check">
<label for="form-checkbox ResearchTopicsSharing">
<span class="<#ERROR name='ERRORResearchTopicsSharing'>">
<input class="form-check-input" type="checkbox" id="ResearchTopicsSharing" name="ResearchTopicsSharing" value="Yes" <#CHECKED name='ResearchTopicsSharing' default='true'>>May we share your research topics with others?
</span>
</label>
</div>
v5.0
Bug# 4551
Released in Aeon 5.0 web pages on 1/20/2020.