using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; using Xamarin.Forms; namespace egzamin2022 { public partial class MainPage : ContentPage { public MainPage() { InitializeComponent(); } private void buttonZatwierdz_Clicked(object sender, EventArgs e) { if (!entryMail.Text.Contains("@")) { labelKomunikat.Text = "Niepoprawny adres e-mail"; } else if (entryPassword.Text != entryRepeatPassword.Text && (entryPassword.Text != "" || entryRepeatPassword.Text != "")) { labelKomunikat.Text = "Hasła się różnią"; } else if (entryMail.Text.Contains("@") && entryPassword.Text == entryRepeatPassword.Text && entryPassword.Text != "" && entryRepeatPassword.Text != "") { labelKomunikat.Text = "Witaj " + entryMail.Text; } else { labelKomunikat.Text = ""; } } } }