1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-09-29 04:07:37 +02:00
bitwarden-mobile/src/App/Pages/HomePage.xaml

32 lines
1.2 KiB
Plaintext
Raw Normal View History

2019-03-28 22:10:10 +01:00
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage
xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="Bit.App.Pages.HomePage"
2019-03-29 04:52:33 +01:00
xmlns:pages="clr-namespace:Bit.App.Pages"
2019-04-19 13:42:36 +02:00
xmlns:i18n="clr-namespace:Bit.App.Utilities"
xmlns:android="clr-namespace:Xamarin.Forms.PlatformConfiguration.AndroidSpecific;assembly=Xamarin.Forms.Core"
2019-03-29 14:16:22 +01:00
x:DataType="pages:HomeViewModel"
2019-03-29 04:52:33 +01:00
Title="{Binding PageTitle}">
2019-03-28 22:10:10 +01:00
<ContentPage.BindingContext>
2019-03-29 04:52:33 +01:00
<pages:HomeViewModel />
2019-03-28 22:10:10 +01:00
</ContentPage.BindingContext>
<StackLayout>
2019-04-19 13:42:36 +02:00
<Button Text="&#xf2b9;"
class="fa"
HorizontalOptions="Start"></Button>
<StackLayout VerticalOptions="CenterAndExpand">
<Image Source="logo.png"
VerticalOptions="Center" />
<Label Text="{i18n:Translate LoginOrCreateNewAccount}"
class="text-lg"
HorizontalTextAlignment="Center"></Label>
<Button Text="{i18n:Translate LogIn}"
android:Button.UseDefaultShadow="false"></Button>
<Button Text="{i18n:Translate CreateAccount}"></Button>
</StackLayout>
2019-03-28 22:10:10 +01:00
</StackLayout>
</ContentPage>