2019-05-01 21:53:56 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8" ?>
|
|
|
|
<pages:BaseContentPage
|
|
|
|
xmlns="http://xamarin.com/schemas/2014/forms"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
|
|
x:Class="Bit.App.Pages.HintPage"
|
|
|
|
xmlns:pages="clr-namespace:Bit.App.Pages"
|
|
|
|
xmlns:u="clr-namespace:Bit.App.Utilities"
|
|
|
|
x:DataType="pages:HintPageViewModel"
|
|
|
|
Title="{Binding PageTitle}">
|
|
|
|
|
|
|
|
<ContentPage.BindingContext>
|
|
|
|
<pages:HintPageViewModel />
|
|
|
|
</ContentPage.BindingContext>
|
|
|
|
|
|
|
|
<ContentPage.ToolbarItems>
|
2021-07-27 15:25:42 +02:00
|
|
|
<ToolbarItem Text="{u:I18n Cancel}" Clicked="Close_Clicked" Order="Primary" Priority="-1" />
|
2019-05-01 21:53:56 +02:00
|
|
|
<ToolbarItem Text="{u:I18n Submit}" Clicked="Submit_Clicked" />
|
|
|
|
</ContentPage.ToolbarItems>
|
|
|
|
|
|
|
|
<ScrollView>
|
|
|
|
<StackLayout StyleClass="box">
|
|
|
|
<StackLayout StyleClass="box-row">
|
|
|
|
<Label
|
|
|
|
Text="{u:I18n EmailAddress}"
|
|
|
|
StyleClass="box-label" />
|
|
|
|
<Entry
|
2019-06-05 05:16:57 +02:00
|
|
|
x:Name="_email"
|
2019-05-01 21:53:56 +02:00
|
|
|
Text="{Binding Email}"
|
|
|
|
Keyboard="Email"
|
2019-05-31 18:13:14 +02:00
|
|
|
StyleClass="box-value"
|
|
|
|
ReturnType="Go"
|
|
|
|
ReturnCommand="{Binding SubmitCommand}" />
|
2019-05-01 21:53:56 +02:00
|
|
|
</StackLayout>
|
|
|
|
<Label
|
|
|
|
Text="{u:I18n EnterEmailForHint}"
|
|
|
|
StyleClass="box-footer-label" />
|
|
|
|
</StackLayout>
|
|
|
|
</ScrollView>
|
|
|
|
|
|
|
|
</pages:BaseContentPage>
|