2021-11-07 19:42:59 +01:00
|
|
|
<?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="TINK.View.CopriWebView.PasswordForgottenPage">
|
|
|
|
<ContentPage.Content>
|
|
|
|
<Grid>
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<RowDefinition Height="*"/>
|
|
|
|
</Grid.RowDefinitions>
|
2022-04-10 17:38:34 +02:00
|
|
|
<WebView x:Name="PasswordForgottenWebView"
|
2021-11-07 19:42:59 +01:00
|
|
|
HeightRequest="1400"
|
|
|
|
WidthRequest="1000"
|
|
|
|
Source="{Binding Uri}" />
|
2022-04-10 17:38:34 +02:00
|
|
|
<ActivityIndicator
|
|
|
|
x:Name="ActivityIndicatorLoading"
|
|
|
|
HeightRequest="100"
|
|
|
|
VerticalOptions="CenterAndExpand"
|
|
|
|
HorizontalOptions="CenterAndExpand"/>
|
2021-11-07 19:42:59 +01:00
|
|
|
</Grid>
|
|
|
|
</ContentPage.Content>
|
|
|
|
</ContentPage>
|