22 lines
373 B
C#
22 lines
373 B
C#
using System;
|
|
using System.Windows.Forms;
|
|
|
|
namespace LibationWinForms.Dialogs.Login
|
|
{
|
|
public partial class _2faCodeDialog : Form
|
|
{
|
|
public string Code { get; private set; }
|
|
|
|
public _2faCodeDialog()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void submitBtn_Click(object sender, EventArgs e)
|
|
{
|
|
Code = this.codeTb.Text;
|
|
DialogResult = DialogResult.OK;
|
|
}
|
|
}
|
|
}
|