Files
ExemploAppMAUI/GuilhermesApp/Pages/LoginPage.xaml
Guilherme Gaspar 44f456eb29 Guilhermes
2026-03-23 17:42:36 +00:00

32 lines
1.3 KiB
XML

<?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>