mirror of
https://github.com/bitwarden/mobile
synced 2025-12-15 07:43:37 +00:00
stub out two factor page
This commit is contained in:
39
src/App/Pages/Accounts/TwoFactorPage.xaml.cs
Normal file
39
src/App/Pages/Accounts/TwoFactorPage.xaml.cs
Normal file
@@ -0,0 +1,39 @@
|
||||
using System;
|
||||
using Xamarin.Forms;
|
||||
|
||||
namespace Bit.App.Pages
|
||||
{
|
||||
public partial class TwoFactorPage : BaseContentPage
|
||||
{
|
||||
private TwoFactorPageViewModel _vm;
|
||||
|
||||
public TwoFactorPage()
|
||||
{
|
||||
InitializeComponent();
|
||||
_vm = BindingContext as TwoFactorPageViewModel;
|
||||
_vm.Page = this;
|
||||
}
|
||||
|
||||
protected override async void OnAppearing()
|
||||
{
|
||||
base.OnAppearing();
|
||||
await _vm.InitAsync();
|
||||
}
|
||||
|
||||
private void Continue_Clicked(object sender, EventArgs e)
|
||||
{
|
||||
if(DoOnce())
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
private void Methods_Clicked(object sender, EventArgs e)
|
||||
{
|
||||
if(DoOnce())
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user