Skip to content
Snippets Groups Projects
Commit 98b1149f authored by Guillaume ROUSSE's avatar Guillaume ROUSSE
Browse files

assign each label to input element with proper id attribute

parent d86a1478
No related branches found
No related tags found
No related merge requests found
...@@ -3,11 +3,12 @@ ...@@ -3,11 +3,12 @@
<fieldset class="scrollable"> <fieldset class="scrollable">
[% IF provider.contacts.defined %] [% IF provider.contacts.defined %]
<label for="entityid">[% lh.maketext("Select the email address where an email challenge can be sent to validate your identity:") %]</label> <p>[% lh.maketext("Select the email address where an email challenge can be sent to validate your identity:") %]</p>
<br>
<div class="radio_inline"> <div class="radio_inline">
[% FOREACH email IN provider.contacts.sort %] [% FOREACH email IN provider.contacts.sort %]
<input name="email" value="[% email %]" type="radio" class="required"/><label for="email">[% email %]</label><br/> <input id="[% email %]" name="email" value="[% email %]" type="radio" class="required"/>
<label for="[% email %]">[% email %]</label>
<br/>
[% END %] [% END %]
<input type="hidden" name="entityid" value="[% provider.entityid %]" id="entityid"/> <input type="hidden" name="entityid" value="[% provider.entityid %]" id="entityid"/>
</div> </div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment