|
|
@ -20,8 +20,8 @@ public partial class Inscription : ContentPage
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
else
|
|
|
|
{
|
|
|
|
{
|
|
|
|
/*if(EntryNewPassword.Text.Equals(EntryConfirmationPassword.Text)) {
|
|
|
|
if(EntryNewPassword.Text.Equals(EntryConfirmationPassword.Text)) {
|
|
|
|
if (Mgr.existEmail(EntryNewMail.Text))
|
|
|
|
if (Mgr.Pers.EmailDisponible(EntryNewMail.Text))
|
|
|
|
{
|
|
|
|
{
|
|
|
|
AffichError("Mail existant", "un compte porte déjà cette adresse mail, veuillez en changer", "OK");
|
|
|
|
AffichError("Mail existant", "un compte porte déjà cette adresse mail, veuillez en changer", "OK");
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -43,15 +43,15 @@ public partial class Inscription : ContentPage
|
|
|
|
else
|
|
|
|
else
|
|
|
|
{
|
|
|
|
{
|
|
|
|
AffichError("Mot de passe de confirmation invalide", "Veuillez mettre deux mots de passe identiques", "OK");
|
|
|
|
AffichError("Mot de passe de confirmation invalide", "Veuillez mettre deux mots de passe identiques", "OK");
|
|
|
|
}*/
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
private void ValideCode(object sender, EventArgs e)
|
|
|
|
private void ValideCode(object sender, EventArgs e)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
if (EntryCodeRecept.Text == code)
|
|
|
|
if (EntryCodeRecept.Text == code)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
//Inscrit inscrit = new Inscrit(Mgr.lastInscrit() + 1, EntryNewName.Text, EntryNewMail.Text, EntryNewSurname.Text, EntryNewPassword.Text);
|
|
|
|
Inscrit inscrit = new Inscrit(1, EntryNewName.Text, EntryNewMail.Text, EntryNewSurname.Text, EntryNewPassword.Text);
|
|
|
|
//Mgr.createInscrit(inscrit);
|
|
|
|
Mgr.Pers.AjouterInscrit(inscrit);
|
|
|
|
AffichError("compte créé", "Compte bien créé", "OK");
|
|
|
|
AffichError("compte créé", "Compte bien créé", "OK");
|
|
|
|
NavigateTo("..");
|
|
|
|
NavigateTo("..");
|
|
|
|
}
|
|
|
|
}
|
|
|
|