2022-11-17 10:05:05 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8" ?>
|
2021-11-07 19:42:59 +01:00
|
|
|
<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"
|
2022-11-17 10:05:05 +01:00
|
|
|
xmlns:sharedGui="clr-namespace:ShareeSharedGuiLib.View"
|
|
|
|
x:Class="TINK.View.Login.LoginPage">
|
2022-08-30 15:42:25 +02:00
|
|
|
<Shell.TitleView>
|
|
|
|
<Grid ColumnDefinitions="Auto, 1*">
|
|
|
|
<Label Style="{StaticResource Label-Navbar}"
|
|
|
|
Text="{x:Static resources:AppResources.MarkingLogin}"/>
|
|
|
|
</Grid>
|
|
|
|
</Shell.TitleView>
|
|
|
|
|
2021-11-07 19:42:59 +01:00
|
|
|
<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}"/>
|
2022-11-17 10:05:05 +01:00
|
|
|
<Entry
|
2021-11-07 19:42:59 +01:00
|
|
|
Placeholder="{x:Static resources:AppResources.MarkingLoginPasswordPlaceholder}"
|
|
|
|
AutomationId="password_text"
|
|
|
|
IsPassword="true"
|
|
|
|
x:Name="PasswordEntry"
|
|
|
|
Text="{Binding Password}"
|
|
|
|
IsEnabled="{Binding IsLoggedOut}"/>
|
2022-11-17 10:05:05 +01:00
|
|
|
<Button
|
2021-11-07 19:42:59 +01:00
|
|
|
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>
|
2022-12-27 21:08:09 +01:00
|
|
|
|
2022-11-17 10:05:05 +01:00
|
|
|
</ContentPage>
|