107 lines
3.5 KiB
C#
107 lines
3.5 KiB
C#
|
|
namespace WinFormsDesigner.Dialogs.Login
|
|
{
|
|
partial class MfaDialog
|
|
{
|
|
/// <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()
|
|
{
|
|
this.submitBtn = new System.Windows.Forms.Button();
|
|
this.radioButton1 = new System.Windows.Forms.RadioButton();
|
|
this.radioButton2 = new System.Windows.Forms.RadioButton();
|
|
this.radioButton3 = new System.Windows.Forms.RadioButton();
|
|
this.SuspendLayout();
|
|
//
|
|
// submitBtn
|
|
//
|
|
this.submitBtn.Location = new System.Drawing.Point(12, 81);
|
|
this.submitBtn.Name = "submitBtn";
|
|
this.submitBtn.Size = new System.Drawing.Size(75, 23);
|
|
this.submitBtn.TabIndex = 3;
|
|
this.submitBtn.Text = "Submit";
|
|
this.submitBtn.UseVisualStyleBackColor = true;
|
|
//
|
|
// radioButton1
|
|
//
|
|
this.radioButton1.AutoSize = true;
|
|
this.radioButton1.Checked = true;
|
|
this.radioButton1.Location = new System.Drawing.Point(12, 12);
|
|
this.radioButton1.Name = "radioButton1";
|
|
this.radioButton1.Size = new System.Drawing.Size(220, 17);
|
|
this.radioButton1.TabIndex = 0;
|
|
this.radioButton1.TabStop = true;
|
|
this.radioButton1.Text = "Enter the OTP from the authenticator app";
|
|
this.radioButton1.UseVisualStyleBackColor = true;
|
|
//
|
|
// radioButton2
|
|
//
|
|
this.radioButton2.AutoSize = true;
|
|
this.radioButton2.Location = new System.Drawing.Point(12, 35);
|
|
this.radioButton2.Name = "radioButton2";
|
|
this.radioButton2.Size = new System.Drawing.Size(157, 17);
|
|
this.radioButton2.TabIndex = 1;
|
|
this.radioButton2.Text = "Send an SMS to my number";
|
|
this.radioButton2.UseVisualStyleBackColor = true;
|
|
//
|
|
// radioButton3
|
|
//
|
|
this.radioButton3.AutoSize = true;
|
|
this.radioButton3.Location = new System.Drawing.Point(12, 58);
|
|
this.radioButton3.Name = "radioButton3";
|
|
this.radioButton3.Size = new System.Drawing.Size(128, 17);
|
|
this.radioButton3.TabIndex = 2;
|
|
this.radioButton3.Text = "Call me on my number";
|
|
this.radioButton3.UseVisualStyleBackColor = true;
|
|
//
|
|
// MfaDialog
|
|
//
|
|
this.AcceptButton = this.submitBtn;
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(341, 112);
|
|
this.Controls.Add(this.radioButton3);
|
|
this.Controls.Add(this.radioButton2);
|
|
this.Controls.Add(this.radioButton1);
|
|
this.Controls.Add(this.submitBtn);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "MfaDialog";
|
|
this.ShowIcon = false;
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|
this.Text = "Two-step verification";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
private System.Windows.Forms.Button submitBtn;
|
|
private System.Windows.Forms.RadioButton radioButton1;
|
|
private System.Windows.Forms.RadioButton radioButton2;
|
|
private System.Windows.Forms.RadioButton radioButton3;
|
|
}
|
|
} |