25 lines
1.0 KiB
Plaintext
25 lines
1.0 KiB
Plaintext
|
<?xml version="1.0" encoding="utf-8" ?>
|
||
|
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
|
||
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||
|
x:Class="MobileApp1.Views.PasswordResetPage"
|
||
|
xmlns:views="clr-namespace:MobileApp1.Views"
|
||
|
Title="Reset Password">
|
||
|
<ContentPage.Content>
|
||
|
<StackLayout Margin="20">
|
||
|
<views:CompanyHeaderView />
|
||
|
|
||
|
<StackLayout HorizontalOptions="Fill">
|
||
|
<ScrollView>
|
||
|
<StackLayout>
|
||
|
<Label Text="Your password reset request has been sent." Margin="0, 0, 0, 20" FontSize="Body" />
|
||
|
|
||
|
<Label Text="Check your e-mails for your password reset message." FontSize="Body" />
|
||
|
<Button HorizontalOptions="Fill" Margin="0, 20, 0, 0" Text="Log In To My Account" Clicked="button1_Clicked"></Button>
|
||
|
|
||
|
</StackLayout>
|
||
|
</ScrollView>
|
||
|
</StackLayout>
|
||
|
|
||
|
</StackLayout>
|
||
|
</ContentPage.Content>
|
||
|
</ContentPage>
|