From d5d3cc9d79cefb4716847bfdb3a55b3934cefb33 Mon Sep 17 00:00:00 2001 From: "leo.tuaillon" Date: Mon, 24 Apr 2023 17:48:56 +0200 Subject: [PATCH] ajout item --- AppShell.xaml | 4 ++++ Pages/ChangePassword.xaml | 12 ++++++++++++ Pages/ChangePassword.xaml.cs | 9 +++++++++ 3 files changed, 25 insertions(+) create mode 100644 Pages/ChangePassword.xaml create mode 100644 Pages/ChangePassword.xaml.cs diff --git a/AppShell.xaml b/AppShell.xaml index 11750bd..033e9e9 100644 --- a/AppShell.xaml +++ b/AppShell.xaml @@ -43,5 +43,9 @@ Title="Favorites Page" ContentTemplate="{DataTemplate pages:FavoritesPage}" Route="Favorites" /> + \ No newline at end of file diff --git a/Pages/ChangePassword.xaml b/Pages/ChangePassword.xaml new file mode 100644 index 0000000..7b0ca7c --- /dev/null +++ b/Pages/ChangePassword.xaml @@ -0,0 +1,12 @@ + + + + + \ No newline at end of file diff --git a/Pages/ChangePassword.xaml.cs b/Pages/ChangePassword.xaml.cs new file mode 100644 index 0000000..7b847bd --- /dev/null +++ b/Pages/ChangePassword.xaml.cs @@ -0,0 +1,9 @@ +namespace ShoopNCook.Pages; + +public partial class ChangePassword : ContentPage +{ + public ChangePassword() + { + InitializeComponent(); + } +} \ No newline at end of file