Skip to content

Commit 4ab2634

Browse files
Fix for radio buttons on contact.html
1 parent 95f366f commit 4ab2634

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

contact.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -115,12 +115,12 @@ <h2>Contact form</h2>
115115
<div class="form-fields">
116116
<div class="form-field has-value" data-castlecss-field="">
117117
<label for="gender" class="label">Gender</label>
118-
<label class="input-control input-radio">Male
119-
<input type="radio" name="radio1" checked="checked">
118+
<label class="input-control input-radio" for="radio_male">Male
119+
<input type="radio" name="radios" id="radio_male" checked="checked">
120120
<span class="input-indicator"></span>
121121
</label>
122-
<label class="input-control input-radio">Female
123-
<input type="radio" name="radio1">
122+
<label class="input-control input-radio" for="radio_female">Female
123+
<input type="radio" name="radios" id="radio_female">
124124
<span class="input-indicator"></span>
125125
</label>
126126
</div>

dist/css/styles.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/styles.min.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)