You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.7 KiB
50 lines
1.7 KiB
<?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"
|
|
xmlns:youserbase="clr-namespace:YOUserbase"
|
|
xmlns:local="clr-namespace:YOUserbase"
|
|
x:DataType="youserbase:LoginPage"
|
|
x:Class="YOUserbase.LoginPage">
|
|
<ScrollView>
|
|
<VerticalStackLayout
|
|
Spacing="25"
|
|
VerticalOptions="Center"
|
|
HorizontalOptions="Center">
|
|
<Image
|
|
Source="logo_white.png"
|
|
SemanticProperties.Description="YOUserbase Logo"
|
|
MaximumWidthRequest="300"
|
|
MaximumHeightRequest="340"
|
|
MinimumWidthRequest="300"
|
|
MinimumHeightRequest="340" />
|
|
<Label
|
|
Text="YOUserbase"
|
|
SemanticProperties.HeadingLevel="Level4"
|
|
FontSize="48"
|
|
FontFamily="BlimoneRegular"
|
|
HorizontalOptions="Center" />
|
|
|
|
<Label
|
|
x:Name="lblUsername"
|
|
Text="Username:"
|
|
WidthRequest="500" />
|
|
<Entry
|
|
x:Name="UsernameEntry"
|
|
WidthRequest="500" />
|
|
<Label
|
|
x:Name="lblPassword"
|
|
Text="Password:"
|
|
WidthRequest="500" />
|
|
<Entry
|
|
x:Name="PasswordEntry"
|
|
IsPassword="true"
|
|
WidthRequest="500" />
|
|
<Button
|
|
x:Name="btnLogin"
|
|
Text="Login"
|
|
Clicked="OnLoginClicked"
|
|
WidthRequest="500" />
|
|
</VerticalStackLayout>
|
|
</ScrollView>
|
|
</ContentPage> |