From d816e940369c7a894efcfe29126e7463ed33b15f Mon Sep 17 00:00:00 2001 From: Guillaume Rousse <guillaume.rousse@renater.fr> Date: Fri, 3 Aug 2018 16:27:30 +0200 Subject: [PATCH] the entityid value is required --- templates/renater/web/select_sp.tt2.html | 2 +- templates/web/select_sp.tt2.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/renater/web/select_sp.tt2.html b/templates/renater/web/select_sp.tt2.html index f489ff7..8633ded 100644 --- a/templates/renater/web/select_sp.tt2.html +++ b/templates/renater/web/select_sp.tt2.html @@ -18,7 +18,7 @@ <fieldset> <legend for="entityid">[% lh.maketext("Type the name or entityID of service to test:") %]</legend> - <select id="entityid" name="entityid"> + <select id="entityid" name="entityid" class="required"> <option value=""></option> [% FOREACH entity IN metadata.sort('display_name') %] <option value="[% entity.entityid %]">[% entity.display_name %]</option> diff --git a/templates/web/select_sp.tt2.html b/templates/web/select_sp.tt2.html index 1e28d39..09cc6ec 100644 --- a/templates/web/select_sp.tt2.html +++ b/templates/web/select_sp.tt2.html @@ -18,7 +18,7 @@ <fieldset> <legend for="entityid">[% lh.maketext("Type the name or entityID of service to test:") %]</legend> - <select id="entityid" name="entityid"> + <select id="entityid" name="entityid" class="required"> <option value=""></option> [% FOREACH entity IN metadata.sort('display_name') %] <option value="[% entity.entityid %]">[% entity.display_name %]</option> -- GitLab