diff --git a/Views/ChangePassword.xaml b/Views/ChangePassword.xaml
deleted file mode 100644
index 237e203..0000000
--- a/Views/ChangePassword.xaml
+++ /dev/null
@@ -1,149 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Views/ChangePassword.xaml.cs b/Views/ChangePassword.xaml.cs
deleted file mode 100644
index b22dac1..0000000
--- a/Views/ChangePassword.xaml.cs
+++ /dev/null
@@ -1,13 +0,0 @@
-namespace ShoopNCook.Pages;
-
-public partial class ChangePassword : ContentPage
-{
- public ChangePassword()
- {
- InitializeComponent();
- }
- private async void OnBackButtonClicked(object sender, EventArgs e)
- {
- await Navigation.PopAsync();
- }
-}
\ No newline at end of file
diff --git a/Views/Components/CounterView.xaml.cs b/Views/Components/CounterView.xaml.cs
index 9262ccb..1cefd44 100644
--- a/Views/Components/CounterView.xaml.cs
+++ b/Views/Components/CounterView.xaml.cs
@@ -41,4 +41,4 @@ public partial class CounterView : ContentView
Count -= 1;
}
}
-
+
diff --git a/Views/ConfirmMail.xaml b/Views/ConfirmMail.xaml
deleted file mode 100644
index a4458ea..0000000
--- a/Views/ConfirmMail.xaml
+++ /dev/null
@@ -1,148 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Views/ConfirmMail.xaml.cs b/Views/ConfirmMail.xaml.cs
deleted file mode 100644
index 94418e9..0000000
--- a/Views/ConfirmMail.xaml.cs
+++ /dev/null
@@ -1,17 +0,0 @@
-namespace ShoopNCook.Pages;
-
-public partial class ConfirmMail : ContentPage
-{
- public ConfirmMail()
- {
- 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/ForgotPassword.xaml b/Views/ForgotPassword.xaml
deleted file mode 100644
index 6ae1902..0000000
--- a/Views/ForgotPassword.xaml
+++ /dev/null
@@ -1,173 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Views/ForgotPassword.xaml.cs b/Views/ForgotPassword.xaml.cs
deleted file mode 100644
index 6cb8c7a..0000000
--- a/Views/ForgotPassword.xaml.cs
+++ /dev/null
@@ -1,13 +0,0 @@
-namespace ShoopNCook.Pages;
-
-public partial class ForgotPassword : ContentPage
-{
- public ForgotPassword()
- {
- InitializeComponent();
- }
- private async void OnBackButtonClicked(object sender, EventArgs e)
- {
- await Navigation.PopAsync();
- }
-}
\ No newline at end of file
diff --git a/Views/HomePage.xaml b/Views/HomePage.xaml
index afcf2b1..9b84973 100644
--- a/Views/HomePage.xaml
+++ b/Views/HomePage.xaml
@@ -27,7 +27,7 @@
+ Text="{Binding Name}"/>
-
-
-
+
\ No newline at end of file
diff --git a/Views/ProfilePage.xaml b/Views/ProfilePage.xaml
index 480b0f5..5a6edaa 100644
--- a/Views/ProfilePage.xaml
+++ b/Views/ProfilePage.xaml
@@ -87,7 +87,7 @@
+ IsReadOnly="True"/>
-
-
-
+ IsReadOnly="True"/>
+
diff --git a/Views/ProfilePage.xaml.cs b/Views/ProfilePage.xaml.cs
index a7076d5..1906138 100644
--- a/Views/ProfilePage.xaml.cs
+++ b/Views/ProfilePage.xaml.cs
@@ -1,24 +1,21 @@
-using Models;
-
-namespace ShoopNCook.Pages;
-
-public partial class ProfilePage : ContentPage
-{
-
-
- public ProfilePage(Account account)
- {
+using Models;
+
+namespace ShoopNCook.Pages;
+
+public partial class ProfilePage : ContentPage
+{
+
+
+ public ProfilePage(Account account)
+ {
BindingContext = account;
InitializeComponent();
- ProfilePicture.Source = ImageSource.FromUri(account.User.ProfilePicture);
- }
- private async void OnBackButtonClicked(object sender, EventArgs e)
- {
- await Navigation.PopAsync();
- }
- private async void ChangeMyPasswordClicked(object sender, EventArgs e)
- {
- await Shell.Current.Navigation.PushAsync(new ChangePassword());
- }
+ ProfilePicture.Source = ImageSource.FromUri(account.User.ProfilePicture);
+ }
+ private async void OnBackButtonClicked(object sender, EventArgs e)
+ {
+ await Navigation.PopAsync();
+ }
+
}
\ No newline at end of file