diff --git a/.gitignore b/.gitignore index 10f0792..55de648 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,10 @@ bin/ obj/ +#locks and backup +.~* + + .nuspec/ .buildtasks/ templatesTest/ diff --git a/AppShell.xaml b/AppShell.xaml index 4b2f94f..7d2a2e1 100644 --- a/AppShell.xaml +++ b/AppShell.xaml @@ -1,21 +1,21 @@ - - - - - - - - - + + + + + + + + + diff --git a/MauiProgram.cs b/MauiProgram.cs index 0367a8f..760acb4 100644 --- a/MauiProgram.cs +++ b/MauiProgram.cs @@ -13,7 +13,8 @@ public static class MauiProgram { fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular"); fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold"); - }); + fonts.AddFont("Poppins-bold.ttf", "PoppinsBold"); + }); #if DEBUG builder.Logging.AddDebug(); diff --git a/Resources/Fonts/Poppins-Bold.ttf b/Resources/Fonts/Poppins-Bold.ttf new file mode 100644 index 0000000..89b46e7 Binary files /dev/null and b/Resources/Fonts/Poppins-Bold.ttf differ 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/facebook_logo.svg b/Resources/Images/facebook_logo.svg new file mode 100644 index 0000000..7b84fa9 --- /dev/null +++ b/Resources/Images/facebook_logo.svg @@ -0,0 +1,12 @@ + + + + + + + \ No newline at end of file diff --git a/Resources/Images/google_logo.svg b/Resources/Images/google_logo.svg new file mode 100644 index 0000000..d5616b3 --- /dev/null +++ b/Resources/Images/google_logo.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 05d3006..e2e63d1 100644 --- a/ShoopNCook.csproj +++ b/ShoopNCook.csproj @@ -48,6 +48,15 @@ + + + + + + + + + diff --git a/Views/LoginPage.xaml b/Views/LoginPage.xaml new file mode 100644 index 0000000..b2f99c0 --- /dev/null +++ b/Views/LoginPage.xaml @@ -0,0 +1,154 @@ + + + + + \ 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