1
0
mirror of https://github.com/Ylianst/MeshCentralRouter synced 2025-12-16 08:13:25 +00:00

Added messaging 2FA support.

This commit is contained in:
Ylian Saint-Hilaire
2022-10-24 07:05:55 -07:00
parent a885efc4cf
commit f049ff6094
6 changed files with 474 additions and 181 deletions

View File

@@ -52,6 +52,7 @@
this.pictureBox2 = new System.Windows.Forms.PictureBox();
this.tabPage2 = new System.Windows.Forms.TabPage();
this.panel2 = new System.Windows.Forms.Panel();
this.msgTokenButton = new System.Windows.Forms.Button();
this.tokenRememberCheckBox = new System.Windows.Forms.CheckBox();
this.emailTokenButton = new System.Windows.Forms.Button();
this.smsTokenButton = new System.Windows.Forms.Button();
@@ -331,6 +332,7 @@
//
// panel2
//
this.panel2.Controls.Add(this.msgTokenButton);
this.panel2.Controls.Add(this.tokenRememberCheckBox);
this.panel2.Controls.Add(this.emailTokenButton);
this.panel2.Controls.Add(this.smsTokenButton);
@@ -345,6 +347,13 @@
resources.ApplyResources(this.panel2, "panel2");
this.panel2.Name = "panel2";
//
// msgTokenButton
//
resources.ApplyResources(this.msgTokenButton, "msgTokenButton");
this.msgTokenButton.Name = "msgTokenButton";
this.msgTokenButton.UseVisualStyleBackColor = true;
this.msgTokenButton.Click += new System.EventHandler(this.msgTokenButton_Click);
//
// tokenRememberCheckBox
//
resources.ApplyResources(this.tokenRememberCheckBox, "tokenRememberCheckBox");
@@ -1149,6 +1158,7 @@
private System.Windows.Forms.Button connectionSettings;
private System.Windows.Forms.ToolStripMenuItem customAppsToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem customAppsToolStripMenuItem1;
private System.Windows.Forms.Button msgTokenButton;
}
}