demo-xf-app-1a/MobileApp1/Views/PasswordResetPage.xaml.cs

19 lines
381 B
C#

using System;
using Xamarin.Forms;
namespace MobileApp1.Views
{
public partial class PasswordResetPage : ContentPage
{
public PasswordResetPage()
{
InitializeComponent();
}
private void button1_Clicked(object sender, EventArgs e)
{
ContentPageHelper.SetMainPage(this, new LoginPage());
}
}
}