19 lines
381 B
C#
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());
|
|
}
|
|
|
|
}
|
|
} |