delete service renews the list

This commit is contained in:
Katerina Iatropoulou 2020-10-20 15:00:31 +00:00
parent f936286d91
commit 77cd9864e5
1 changed files with 3 additions and 3 deletions

View File

@ -108,7 +108,7 @@
<div class="uk-margin">
<label class="uk-form-label" for="form-horizontal-text">Name(*)</label>
<span class="msg_first_name_error uk-text-danger uk-text-small uk-float-left" style='${msg_first_name_error_display}'>Please enter a name for your service.</span>
<input id="first_name" name="first_name" type="text" placeholder="Name (*)" class="form-control" value=${first_name}>
<input id="first_name" name="first_name" type="text" placeholder="Name (*)" class="form-control" value="${first_name}">
<c:remove var="msg_first_name_error_display" scope="session" />
<c:remove var="first_name" scope="session" />
</div>
@ -141,11 +141,11 @@
<label class="uk-form-label" for="form-horizontal-text">Public Key Set</label>
<label><input class="uk-radio" type="radio" name="key_radio" value="value" ${(key_radio == 'value' || key_radio == '') ? 'checked' : ''} >By Value</label>
<label><input class="uk-radio" type="radio" name="key_radio" value="uri" ${key_radio == 'uri' ? 'checked' : ''} >By URI</label><br>
<label><input class="uk-radio" type="radio" name="key_radio" value="${uri}" ${key_radio == 'uri' ? 'checked' : ''} >By URI</label><br>
<div id="value_input">
<span class="msg_key_value_error uk-text-danger uk-text-small uk-float-left" style='${msg_key_value_error_display}'>Please provide a valid JSON.</span>
<textarea id="value" name="value" type="textarea" placeholder='{"keys":[]}' class="form-control uk-textarea" rows="10" value=${value}></textarea>
<textarea id="value" name="value" type="textarea" placeholder='{"keys":[]}' class="form-control uk-textarea" rows="10" value="${value}"></textarea>
</div>
<div id="uri_input" style="display:none;">
<span class="msg_key_uri_error uk-text-danger uk-text-small uk-float-left" style='${msg_key_uri_error_display}'>Please provide a valid URI (do not forget the protocol! https://...)</span>