mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-01 00:46:33 +01:00
27 lines
1.3 KiB
Text
27 lines
1.3 KiB
Text
|
<?xml version="1.0" encoding="utf-8" ?>
|
||
|
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
|
||
|
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"
|
||
|
mc:Ignorable="d"
|
||
|
x:Class="TINK.View.Account.AccountPage">
|
||
|
<ContentPage.Content>
|
||
|
<Frame>
|
||
|
<StackLayout>
|
||
|
<Frame>
|
||
|
<StackLayout>
|
||
|
<Label Text="{Binding LoggedInInfo}" />
|
||
|
<Label IsVisible="{Binding IsBookingStateInfoVisible}"
|
||
|
Text="{Binding BookingStateInfo}" />
|
||
|
<Button Text="Persönliche Daten Verwalten"
|
||
|
Command="{Binding OnManageAccount}"
|
||
|
IsEnabled="{Binding IsLogoutPossible}"/>
|
||
|
<Button Text="Abmelden"
|
||
|
Command="{Binding OnLogoutRequest}"
|
||
|
IsEnabled="{Binding IsLogoutPossible}"/>
|
||
|
</StackLayout>
|
||
|
</Frame>
|
||
|
</StackLayout>
|
||
|
</Frame>
|
||
|
</ContentPage.Content>
|
||
|
</ContentPage>
|