From 90b4c2cc9ca002da7138e2d40f864e39a04328db Mon Sep 17 00:00:00 2001 From: "maxime.BATISTA@etu.uca.fr" Date: Mon, 10 Apr 2023 20:22:22 +0200 Subject: [PATCH] add register page --- AppShell.xaml | 5 + Resources/Images/email_icon.svg | 5 +- Resources/Images/password_icon.svg | 5 +- Resources/Images/user.svg | 4 + ShoopNCook.csproj | 4 + Views/LoginPage.xaml | 2 +- Views/ProfilePage.xaml | 2 +- Views/RegisterPage.xaml | 166 +++++++++++++++++++++++++++++ Views/RegisterPage.xaml.cs | 9 ++ 9 files changed, 198 insertions(+), 4 deletions(-) create mode 100644 Resources/Images/user.svg create mode 100644 Views/RegisterPage.xaml create mode 100644 Views/RegisterPage.xaml.cs diff --git a/AppShell.xaml b/AppShell.xaml index 64dfc90..9955992 100644 --- a/AppShell.xaml +++ b/AppShell.xaml @@ -23,5 +23,10 @@ Title="Search Page" ContentTemplate="{DataTemplate views:SearchPage}" Route="Search" /> + + \ No newline at end of file diff --git a/Resources/Images/email_icon.svg b/Resources/Images/email_icon.svg index b33a95f..d6b8181 100644 --- a/Resources/Images/email_icon.svg +++ b/Resources/Images/email_icon.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/Resources/Images/password_icon.svg b/Resources/Images/password_icon.svg index 6c50cb6..b43acd1 100644 --- a/Resources/Images/password_icon.svg +++ b/Resources/Images/password_icon.svg @@ -1 +1,4 @@ - \ No newline at end of file + + + + diff --git a/Resources/Images/user.svg b/Resources/Images/user.svg new file mode 100644 index 0000000..14ece15 --- /dev/null +++ b/Resources/Images/user.svg @@ -0,0 +1,4 @@ + + + + diff --git a/ShoopNCook.csproj b/ShoopNCook.csproj index 024478d..8ef95d8 100644 --- a/ShoopNCook.csproj +++ b/ShoopNCook.csproj @@ -53,6 +53,7 @@ + @@ -77,6 +78,9 @@ MSBuild:Compile + + MSBuild:Compile + MSBuild:Compile diff --git a/Views/LoginPage.xaml b/Views/LoginPage.xaml index 37205d0..077ca30 100644 --- a/Views/LoginPage.xaml +++ b/Views/LoginPage.xaml @@ -2,7 +2,7 @@ diff --git a/Views/ProfilePage.xaml b/Views/ProfilePage.xaml index a601a65..b686ff5 100644 --- a/Views/ProfilePage.xaml +++ b/Views/ProfilePage.xaml @@ -2,7 +2,7 @@ diff --git a/Views/RegisterPage.xaml b/Views/RegisterPage.xaml new file mode 100644 index 0000000..54b4246 --- /dev/null +++ b/Views/RegisterPage.xaml @@ -0,0 +1,166 @@ + + + + + \ No newline at end of file diff --git a/Views/RegisterPage.xaml.cs b/Views/RegisterPage.xaml.cs new file mode 100644 index 0000000..94f1dd6 --- /dev/null +++ b/Views/RegisterPage.xaml.cs @@ -0,0 +1,9 @@ +namespace ShoopNCook.Views; + +public partial class RegisterPage : ContentPage +{ + public RegisterPage() + { + InitializeComponent(); + } +} \ No newline at end of file -- 2.36.3