Guilhermes
This commit is contained in:
32
GuilhermesApp/Pages/LoginPage.xaml
Normal file
32
GuilhermesApp/Pages/LoginPage.xaml
Normal file
@@ -0,0 +1,32 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||
x:Class="GuilhermesApp.Pages.LoginPage"
|
||||
Shell.NavBarIsVisible="False"
|
||||
Shell.FlyoutBehavior="Disabled"
|
||||
Title="Login">
|
||||
|
||||
<ScrollView>
|
||||
<VerticalStackLayout Spacing="20" Padding="30" VerticalOptions="Center">
|
||||
|
||||
<Image Source="logo.png" HeightRequest="240" HorizontalOptions="Center" />
|
||||
|
||||
<Label Text="Bem-vindo!" FontSize="32" HorizontalOptions="Center" FontAttributes="Bold" />
|
||||
|
||||
<Entry x:Name="EmailEntry" Placeholder="Email" Keyboard="Email" />
|
||||
<Entry x:Name="PasswordEntry" Placeholder="Password" IsPassword="True" />
|
||||
|
||||
<Button Text="Entrar" Clicked="OnLoginClicked" />
|
||||
|
||||
<Label Text="Ainda não tens conta? Regista-te"
|
||||
TextColor="#FF888890"
|
||||
TextDecorations="Underline"
|
||||
HorizontalOptions="Center">
|
||||
<Label.GestureRecognizers>
|
||||
<TapGestureRecognizer Tapped="OnRegisterClicked" />
|
||||
</Label.GestureRecognizers>
|
||||
</Label>
|
||||
|
||||
</VerticalStackLayout>
|
||||
</ScrollView>
|
||||
</ContentPage>
|
||||
Reference in New Issue
Block a user