1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-29 06:33:53 +00:00
Files
mobile/src/App/Pages/HomePage.xaml.cs
Kyle Spearrin 6288a06b49 login page
2019-04-19 09:42:55 -04:00

24 lines
496 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xamarin.Forms;
using Xamarin.Forms.Xaml;
namespace Bit.App.Pages
{
public partial class HomePage : ContentPage
{
public HomePage()
{
InitializeComponent();
}
private void LogIn_Clicked(object sender, EventArgs e)
{
Navigation.PushModalAsync(new NavigationPage(new LoginPage()));
}
}
}