diff --git a/AppShell.xaml b/AppShell.xaml index 4b2f94f..bc61acf 100644 --- a/AppShell.xaml +++ b/AppShell.xaml @@ -1,21 +1,21 @@ - - - - - - - + + + + + + + diff --git a/Resources/Images/email_icon.svg b/Resources/Images/email_icon.svg new file mode 100644 index 0000000..b33a95f --- /dev/null +++ b/Resources/Images/email_icon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Resources/Images/password_icon.svg b/Resources/Images/password_icon.svg new file mode 100644 index 0000000..6c50cb6 --- /dev/null +++ b/Resources/Images/password_icon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Resources/Images/visibility_off.svg b/Resources/Images/visibility_off.svg new file mode 100644 index 0000000..b0f015a --- /dev/null +++ b/Resources/Images/visibility_off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Resources/Images/visibility_on.svg b/Resources/Images/visibility_on.svg new file mode 100644 index 0000000..90e9d65 --- /dev/null +++ b/Resources/Images/visibility_on.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Resources/Styles/Colors.xaml b/Resources/Styles/Colors.xaml index 245758b..0121949 100644 --- a/Resources/Styles/Colors.xaml +++ b/Resources/Styles/Colors.xaml @@ -41,4 +41,11 @@ #72ACF1 #A7CBF6 + + + #f0e7e7 + Black + #6d6d6d + #ff8988 + \ No newline at end of file diff --git a/ShoopNCook.csproj b/ShoopNCook.csproj index 7a3f5bb..3925dd2 100644 --- a/ShoopNCook.csproj +++ b/ShoopNCook.csproj @@ -48,6 +48,13 @@ + + + + + + + diff --git a/Views/LoginPage.xaml b/Views/LoginPage.xaml new file mode 100644 index 0000000..1fe8d20 --- /dev/null +++ b/Views/LoginPage.xaml @@ -0,0 +1,94 @@ + + + + + \ No newline at end of file diff --git a/Views/LoginPage.xaml.cs b/Views/LoginPage.xaml.cs new file mode 100644 index 0000000..bb308e8 --- /dev/null +++ b/Views/LoginPage.xaml.cs @@ -0,0 +1,9 @@ +namespace ShoopNCook.Views; + +public partial class LoginPage : ContentPage +{ + public LoginPage() + { + InitializeComponent(); + } +} \ No newline at end of file