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

22 lines
1.1 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.PasswordResetView">
<ContentView.Content>
<StackLayout HorizontalOptions="Fill">
<ScrollView>
<StackLayout>
<Label Text="Forgotten your password? Reset 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>
<Button x:Name="button1" Margin="0, 20, 0, 0" Text="Request Password Reset" Clicked="button1_Clicked"></Button>
<views:LoadingIndicatorView x:Name="loadingIndicatorView1" Margin="0, 20, 0, 0" />
</StackLayout>
</ScrollView>
</StackLayout>
</ContentView.Content>
</ContentView>