This commit is contained in:
2022-06-20 22:16:12 +00:00
parent 4fb17a3778
commit 0e7d1de1ed
6 changed files with 4227 additions and 0 deletions

105
AyaNovaQBI/tfa.Designer.cs generated Normal file
View File

@@ -0,0 +1,105 @@
namespace AyaNovaQBI
{
partial class tfa
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(tfa));
this.edTFACode = new System.Windows.Forms.TextBox();
this.btnVerifyCode = new System.Windows.Forms.Button();
this.btnCancel = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// edTFACode
//
this.edTFACode.Location = new System.Drawing.Point(15, 66);
this.edTFACode.Name = "edTFACode";
this.edTFACode.Size = new System.Drawing.Size(284, 20);
this.edTFACode.TabIndex = 3;
//
// btnVerifyCode
//
this.btnVerifyCode.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnVerifyCode.Location = new System.Drawing.Point(224, 126);
this.btnVerifyCode.Name = "btnVerifyCode";
this.btnVerifyCode.Size = new System.Drawing.Size(75, 23);
this.btnVerifyCode.TabIndex = 9;
this.btnVerifyCode.Text = "Verify code";
this.btnVerifyCode.UseVisualStyleBackColor = true;
this.btnVerifyCode.Click += new System.EventHandler(this.btnVerifyCode_click);
//
// btnCancel
//
this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnCancel.Location = new System.Drawing.Point(12, 126);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(75, 23);
this.btnCancel.TabIndex = 10;
this.btnCancel.Text = "Cancel";
this.btnCancel.UseVisualStyleBackColor = true;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(12, 36);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(93, 13);
this.label1.TabIndex = 11;
this.label1.Text = "Enter 6 digit code";
//
// tfa
//
this.AcceptButton = this.btnVerifyCode;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoSize = true;
this.CancelButton = this.btnCancel;
this.ClientSize = new System.Drawing.Size(318, 179);
this.ControlBox = false;
this.Controls.Add(this.label1);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.btnVerifyCode);
this.Controls.Add(this.edTFACode);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "tfa";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Two-Factor Authentication";
this.Load += new System.EventHandler(this.auth_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox edTFACode;
private System.Windows.Forms.Button btnVerifyCode;
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.Label label1;
}
}