44 lines
951 B
C#
44 lines
951 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace AyaNovaQBI
|
|
{
|
|
public partial class tfa : Form
|
|
{
|
|
public string TFAPin { get; set; }
|
|
public tfa()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void auth_Load(object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
|
|
|
|
private void btnVerifyCode_click(object sender, EventArgs e)
|
|
{
|
|
|
|
TFAPin = edTFACode.Text;
|
|
if (string.IsNullOrWhiteSpace(TFAPin))
|
|
{
|
|
MessageBox.Show("TFA Code is required to log in");
|
|
return;
|
|
}
|
|
this.DialogResult = DialogResult.OK;
|
|
this.Close();
|
|
}
|
|
|
|
|
|
|
|
}
|
|
}
|