2021-11-07 19:42:59 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8" ?>
|
|
|
|
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
|
2022-04-10 17:38:34 +02:00
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
|
|
xmlns:d="http://xamarin.com/schemas/2014/forms/design"
|
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
|
|
xmlns:resources="clr-namespace:TINK.MultilingualResources;assembly=TINKLib"
|
|
|
|
mc:Ignorable="d"
|
|
|
|
x:Class="TINK.View.Account.AccountPage">
|
2022-08-30 15:42:25 +02:00
|
|
|
<Shell.TitleView>
|
|
|
|
<Grid ColumnDefinitions="Auto, 1*">
|
|
|
|
<Image Style="{StaticResource Image-Navbar}"/>
|
|
|
|
<Label Style="{StaticResource Label-Navbar}"
|
|
|
|
Text="{x:Static resources:AppResources.MarkingAccount}"/>
|
|
|
|
</Grid>
|
|
|
|
</Shell.TitleView>
|
2021-11-07 19:42:59 +01:00
|
|
|
<ContentPage.Content>
|
|
|
|
<Frame>
|
|
|
|
<StackLayout>
|
|
|
|
<Frame>
|
|
|
|
<StackLayout>
|
|
|
|
<Label Text="{Binding LoggedInInfo}" />
|
|
|
|
<Label IsVisible="{Binding IsBookingStateInfoVisible}"
|
|
|
|
Text="{Binding BookingStateInfo}" />
|
2022-04-10 17:38:34 +02:00
|
|
|
<Button Text="{x:Static resources:AppResources.MessageAccountPageManagePersonalData}"
|
2021-11-07 19:42:59 +01:00
|
|
|
Command="{Binding OnManageAccount}"
|
|
|
|
IsEnabled="{Binding IsLogoutPossible}"/>
|
2022-08-30 15:42:25 +02:00
|
|
|
<Button Style="{StaticResource SecondaryButton}"
|
|
|
|
Text="{x:Static resources:AppResources.MessageAccountPageManageLogout}"
|
2021-11-07 19:42:59 +01:00
|
|
|
Command="{Binding OnLogoutRequest}"
|
|
|
|
IsEnabled="{Binding IsLogoutPossible}"/>
|
|
|
|
</StackLayout>
|
|
|
|
</Frame>
|
|
|
|
</StackLayout>
|
|
|
|
</Frame>
|
|
|
|
</ContentPage.Content>
|
|
|
|
</ContentPage>
|