demo-xf-app-1a/MobileApp1/Views/Content/Login/LoginView.xaml

24 lines
1.2 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<ContentView xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:views="clr-namespace:MobileApp1.Views"
x:Class="MobileApp1.Views.LoginView">
<ContentView.Content>
<StackLayout HorizontalOptions="Fill">
<ScrollView>
<StackLayout>
<Label Text="Welcome to XYZ. Log in to your account." Margin="0, 0, 0, 20" FontSize="Body" />
<Label Text="Enter your User ID" />
<Entry x:Name="textbox1" IsSpellCheckEnabled="False" IsTextPredictionEnabled="False" MaxLength="128"></Entry>
<Label Text="Enter your Password" />
<Entry x:Name="textbox2" IsSpellCheckEnabled="False" IsTextPredictionEnabled="False" MaxLength="32" IsPassword="True"></Entry>
<Button x:Name="button1" Margin="0, 20, 0, 0" Text="Log In To My Account" Clicked="button1_Clicked"></Button>
<views:LoadingIndicatorView x:Name="loadingIndicatorView1" Margin="0, 20, 0, 0" />
</StackLayout>
</ScrollView>
</StackLayout>
</ContentView.Content>
</ContentView>