From 97ab3993ef8dd8296545265c410ac8cb213d6f58 Mon Sep 17 00:00:00 2001 From: Rafael Ostertag <rafael.ostertag@math.uzh.ch> Date: Thu, 27 Oct 2016 09:19:58 +0200 Subject: [PATCH] Added `required` attribute to radio button. --- mockup/personmock.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mockup/personmock.html b/mockup/personmock.html index 15eef3b9d..6d1be24c5 100644 --- a/mockup/personmock.html +++ b/mockup/personmock.html @@ -205,12 +205,12 @@ <div class="col-md-6"> <div class="radio"> <label> - <input type="radio" name="gender">male + <input type="radio" name="gender" required>male </label> </div> <div class="radio"> <label> - <input type="radio" name="gender">female + <input type="radio" name="gender" required>female </label> </div> </div> -- GitLab