diff --git a/AppShell.xaml b/AppShell.xaml
index ea876cf..319b35a 100644
--- a/AppShell.xaml
+++ b/AppShell.xaml
@@ -98,4 +98,13 @@
ContentTemplate="{DataTemplate pages:CreateRecipePage}"
Route="CreateRecipe"/>
+
+
+
+
+
\ No newline at end of file
diff --git a/Platforms/Android/AndroidManifest.xml b/Platforms/Android/AndroidManifest.xml
index e9937ad..728b4d6 100644
--- a/Platforms/Android/AndroidManifest.xml
+++ b/Platforms/Android/AndroidManifest.xml
@@ -1,6 +1,6 @@
-
+
\ No newline at end of file
diff --git a/Views/ConfirmMail.xaml b/Views/ConfirmMail.xaml
index acc8df7..ae22bca 100644
--- a/Views/ConfirmMail.xaml
+++ b/Views/ConfirmMail.xaml
@@ -21,7 +21,8 @@
HeightRequest="50"
WidthRequest="50"
- Source="arrow_back.svg"/>
+ Source="arrow_back.svg"
+ Clicked="OnBackButtonClicked"/>
+ Text="That's been my email"
+ />
@@ -136,7 +138,8 @@
BackgroundColor="{StaticResource ActionButton}"
FontFamily="PoppinsMedium"
TextColor="White"
- Text="Confirm my email"/>
+ Text="Confirm my email"
+ Clicked="OnRegiterButtonTapped"/>
diff --git a/Views/ConfirmMail.xaml.cs b/Views/ConfirmMail.xaml.cs
index 7d186ea..94418e9 100644
--- a/Views/ConfirmMail.xaml.cs
+++ b/Views/ConfirmMail.xaml.cs
@@ -6,4 +6,12 @@ public partial class ConfirmMail : ContentPage
{
InitializeComponent();
}
+ private async void OnRegiterButtonTapped(object sender, EventArgs e)
+ {
+ await Shell.Current.GoToAsync("//LoginPage");
+ }
+ private async void OnBackButtonClicked(object sender, EventArgs e)
+ {
+ await Navigation.PopAsync();
+ }
}
\ No newline at end of file
diff --git a/Views/RegisterPage.xaml.cs b/Views/RegisterPage.xaml.cs
index ee764f0..4e93a2b 100644
--- a/Views/RegisterPage.xaml.cs
+++ b/Views/RegisterPage.xaml.cs
@@ -12,6 +12,6 @@ public partial class RegisterPage : ContentPage
}
private async void RegisterTapped(object sender, EventArgs e)
{
- await Shell.Current.GoToAsync("//LoginPage");
+ await Navigation.PushAsync(new ConfirmMail());
}
}
\ No newline at end of file