mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-01 00:46:33 +01:00
53 lines
No EOL
2.8 KiB
XML
53 lines
No EOL
2.8 KiB
XML
<?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:resources="clr-namespace:TINK.MultilingualResources;assembly=TINKLib"
|
|
x:Class="TINK.View.Login.LoginPage">
|
|
<ScrollView>
|
|
<Frame>
|
|
<StackLayout x:Name="LoginPageView">
|
|
<Frame>
|
|
<StackLayout>
|
|
<Label Text="{x:Static resources:AppResources.MarkingLoginEmailAddressLabel}"/>
|
|
<Entry
|
|
Placeholder="{x:Static resources:AppResources.MarkingLoginEmailAddressPlaceholder}"
|
|
Keyboard="Email"
|
|
AutomationId="mail_address_text"
|
|
x:Name="EMailEntry"
|
|
Text="{Binding MailAddress}"
|
|
IsEnabled="{Binding IsLoggedOut}"/>
|
|
<Label Text="{x:Static resources:AppResources.MarkingLoginPasswordLabel}"/>
|
|
<Entry
|
|
Placeholder="{x:Static resources:AppResources.MarkingLoginPasswordPlaceholder}"
|
|
AutomationId="password_text"
|
|
IsPassword="true"
|
|
x:Name="PasswordEntry"
|
|
Text="{Binding Password}"
|
|
IsEnabled="{Binding IsLoggedOut}"/>
|
|
<Button
|
|
Text="{x:Static resources:AppResources.ActionLoginLogin}"
|
|
AutomationId="login_button"
|
|
Command="{Binding OnLoginRequest}"
|
|
IsEnabled="{Binding IsLoginRequestAllowed}">
|
|
</Button>
|
|
<Button
|
|
Text="{x:Static resources:AppResources.ActionLoginRegister}"
|
|
AutomationId="register_button"
|
|
Command="{Binding OnRegisterRequest}"
|
|
IsVisible="{Binding IsWebViewElementsVisible}">
|
|
</Button>
|
|
<Label
|
|
IsVisible="{Binding IsRegisterTargetsInfoVisible}"
|
|
FormattedText="{Binding RegisterTargetsInfo}">
|
|
</Label>
|
|
<Button
|
|
Text="{x:Static resources:AppResources.ActionLoginPasswordForgotten}"
|
|
AutomationId="password_forgotten_button"
|
|
Command="{Binding OnPasswordForgottonRequest}">
|
|
</Button>
|
|
</StackLayout>
|
|
</Frame>
|
|
</StackLayout>
|
|
</Frame>
|
|
</ScrollView>
|
|
</ContentPage> |