Piccole migliorie
This commit is contained in:
parent
c67ca53568
commit
d37b6eeffb
|
@ -133,7 +133,7 @@ echo' required>
|
||||||
{[ "type": "password", "name": "password", "autocomplete": "current-password", "placeholder": "'.tr('Password').'", "icon-before": "<i class=\"fa fa-lock\"></i>" ]}
|
{[ "type": "password", "name": "password", "autocomplete": "current-password", "placeholder": "'.tr('Password').'", "icon-before": "<i class=\"fa fa-lock\"></i>" ]}
|
||||||
|
|
||||||
<div class="text-right">
|
<div class="text-right">
|
||||||
<a href="'.ROOTDIR.'/reset.php">'.tr('Dimenticata la password?').'</a>
|
<small><a href="'.ROOTDIR.'/reset.php">'.tr('Password dimenticata?').'</a></small>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
@ -47,9 +47,13 @@ if (!empty($user)) {
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
$(function() {
|
function no_check_pwd(){
|
||||||
$("#password").attr("disabled", true);
|
$("#password").attr("disabled", true);
|
||||||
$("#submit-button").attr("disabled", false).removeClass("disabled");
|
$("#submit-button").attr("disabled", false).removeClass("disabled");
|
||||||
|
}
|
||||||
|
|
||||||
|
$("#bs-popup").on("shown.bs.modal", function () {
|
||||||
|
no_check_pwd();
|
||||||
});
|
});
|
||||||
|
|
||||||
$("#change_password").change(function() {
|
$("#change_password").change(function() {
|
||||||
|
@ -57,13 +61,14 @@ if (!empty($user)) {
|
||||||
$("#password").attr("disabled", false);
|
$("#password").attr("disabled", false);
|
||||||
$("#password").change();
|
$("#password").change();
|
||||||
} else {
|
} else {
|
||||||
$("#password").attr("disabled", true);
|
no_check_pwd();
|
||||||
$("#submit-button").attr("disabled", false).removeClass("disabled");
|
|
||||||
}
|
}
|
||||||
})
|
});
|
||||||
</script>';
|
</script>';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
include $structure->filepath('components/password.php');
|
include $structure->filepath('components/password.php');
|
||||||
|
|
||||||
echo '
|
echo '
|
||||||
|
|
|
@ -14,7 +14,7 @@ switch ($name) {
|
||||||
['id', '<>', $id_record],
|
['id', '<>', $id_record],
|
||||||
])->count() == 0;
|
])->count() == 0;
|
||||||
|
|
||||||
$message = $disponibile ? tr("L'username è disponbile") : tr("L'username è già utilizzato");
|
$message = $disponibile ? tr("L'username è disponbile") : tr("L'username è già in uso");
|
||||||
$result = $disponibile;
|
$result = $disponibile;
|
||||||
|
|
||||||
// Lunghezza minima del nome utente (username)
|
// Lunghezza minima del nome utente (username)
|
||||||
|
|
|
@ -100,6 +100,7 @@ if (Auth::isBrute()) {
|
||||||
echo '
|
echo '
|
||||||
<form action="" method="post" class="box box-center-large box-warning" id="reset">
|
<form action="" method="post" class="box box-center-large box-warning" id="reset">
|
||||||
<div class="box-header with-border text-center">
|
<div class="box-header with-border text-center">
|
||||||
|
<a href="'.ROOTDIR.'/index.php"><i class="fa fa-arrow-left btn btn-xs btn-warning pull-left tip" title="'.tr('Torna indietro').'" ></i></a>
|
||||||
<h3 class="box-title">'.$pageTitle.'</h3>
|
<h3 class="box-title">'.$pageTitle.'</h3>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -109,8 +110,8 @@ if (empty($token)) {
|
||||||
echo '
|
echo '
|
||||||
<input type="hidden" name="op" value="reset">
|
<input type="hidden" name="op" value="reset">
|
||||||
|
|
||||||
<p>'.tr("Per richiedere la reimpostazione della password, inserisci l'username e l'indirizzo email con cui hai accesso al gestionale").'.</p>
|
<p>'.tr("Per reimpostare password, inserisci l'username con cui hai accesso al gestionale e l'indirizzo email associato all'utente").'.<br>
|
||||||
<p>'.tr("Una volta inviata e validata la richiesta, riceverai un'email dove sarà indicato un link a cui potrai reimpostare la password di accesso ad OpenSTAManager").'.</p>
|
'.tr("Se i dati inseriti risulteranno corretti riceverai un'email dove sarà indicato il link da cui potrai reimpostare la tua password").'.</p>
|
||||||
|
|
||||||
{[ "type": "text", "label": "'.tr('Username').'", "placeholder": "'.tr('Username').'", "name": "username", "icon-before": "<i class=\"fa fa-user\"></i>", "required": 1 ]}
|
{[ "type": "text", "label": "'.tr('Username').'", "placeholder": "'.tr('Username').'", "name": "username", "icon-before": "<i class=\"fa fa-user\"></i>", "required": 1 ]}
|
||||||
|
|
||||||
|
@ -129,7 +130,7 @@ echo '
|
||||||
|
|
||||||
<div class="box-footer">
|
<div class="box-footer">
|
||||||
<button type="submit" id="submit-button" class="btn btn-success btn-block">
|
<button type="submit" id="submit-button" class="btn btn-success btn-block">
|
||||||
<i class="fa fa-arrow-right"></i> '.tr('Procedi').'
|
<i class="fa fa-arrow-right"></i> '.tr('Invia richiesta').'
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</form>';
|
</form>';
|
||||||
|
|
Loading…
Reference in New Issue