|
@@ -214,8 +214,11 @@
|
|
|
<br>
|
|
<br>
|
|
|
<h3 class="text-primary">Inserimento nuovo utente</h3>
|
|
<h3 class="text-primary">Inserimento nuovo utente</h3>
|
|
|
<small>Se hai selezionato un utente già registrato inserira solamente quello</small>
|
|
<small>Se hai selezionato un utente già registrato inserira solamente quello</small>
|
|
|
- <br>
|
|
|
|
|
|
|
+ <br>
|
|
|
<span style="color:red;display:none" class="error">Tutti i campi sono obbligatori</span>
|
|
<span style="color:red;display:none" class="error">Tutti i campi sono obbligatori</span>
|
|
|
|
|
+ @if($newMemberFiscalCodeExist)
|
|
|
|
|
+ <span style="color:red;" class="error">Il codice fiscale esiste</span>
|
|
|
|
|
+ @endif
|
|
|
<div class="row">
|
|
<div class="row">
|
|
|
<div class="col-md-6">
|
|
<div class="col-md-6">
|
|
|
<label for="newMemberFirstName" class="form-label">Nome</label>
|
|
<label for="newMemberFirstName" class="form-label">Nome</label>
|
|
@@ -495,6 +498,7 @@
|
|
|
|
|
|
|
|
function annulla()
|
|
function annulla()
|
|
|
{
|
|
{
|
|
|
|
|
+ isSaving = false;
|
|
|
$('#userModal').modal('hide');
|
|
$('#userModal').modal('hide');
|
|
|
$('#deleteModal').modal('hide');
|
|
$('#deleteModal').modal('hide');
|
|
|
$('#instructorModal').modal('hide');
|
|
$('#instructorModal').modal('hide');
|
|
@@ -502,6 +506,7 @@
|
|
|
|
|
|
|
|
function showHideDelete()
|
|
function showHideDelete()
|
|
|
{
|
|
{
|
|
|
|
|
+ isSaving = true;
|
|
|
$(".showDelete").show();
|
|
$(".showDelete").show();
|
|
|
$(".btSave").hide();
|
|
$(".btSave").hide();
|
|
|
}
|
|
}
|