|
|
@ -20,6 +20,9 @@ namespace VeraxShield.composants.authentification
|
|
|
|
|
|
|
|
|
|
|
|
public String Erreur {get; set; }
|
|
|
|
public String Erreur {get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public bool showPassword = false;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
protected override async Task OnInitializedAsync()
|
|
|
|
protected override async Task OnInitializedAsync()
|
|
|
|
{
|
|
|
|
{
|
|
|
|
this.Requete = new RequeteConnexion();
|
|
|
|
this.Requete = new RequeteConnexion();
|
|
|
@ -46,5 +49,10 @@ namespace VeraxShield.composants.authentification
|
|
|
|
{
|
|
|
|
{
|
|
|
|
this.NavigationManager.NavigateTo("/inscription");
|
|
|
|
this.NavigationManager.NavigateTo("/inscription");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private void ToggleShowPassword()
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
showPassword = !showPassword;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|