140 lines
5.9 KiB
C#
140 lines
5.9 KiB
C#
namespace _3auth_test
|
|
{
|
|
partial class LoginForm
|
|
{
|
|
/// <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(LoginForm));
|
|
this.loginBtn = new System.Windows.Forms.Button();
|
|
this.usernameBox = new System.Windows.Forms.TextBox();
|
|
this.passwordBox = new System.Windows.Forms.TextBox();
|
|
this.usernameLabel = new System.Windows.Forms.Label();
|
|
this.passwordLabel = new System.Windows.Forms.Label();
|
|
this.registerBtn = new System.Windows.Forms.Button();
|
|
this.statusLabel = new System.Windows.Forms.Label();
|
|
this.SuspendLayout();
|
|
//
|
|
// loginBtn
|
|
//
|
|
this.loginBtn.Location = new System.Drawing.Point(14, 64);
|
|
this.loginBtn.Name = "loginBtn";
|
|
this.loginBtn.Size = new System.Drawing.Size(217, 33);
|
|
this.loginBtn.TabIndex = 0;
|
|
this.loginBtn.Text = "Login";
|
|
this.loginBtn.UseVisualStyleBackColor = true;
|
|
this.loginBtn.Click += new System.EventHandler(this.loginBtn_Click);
|
|
//
|
|
// usernameBox
|
|
//
|
|
this.usernameBox.Location = new System.Drawing.Point(75, 12);
|
|
this.usernameBox.Name = "usernameBox";
|
|
this.usernameBox.Size = new System.Drawing.Size(156, 20);
|
|
this.usernameBox.TabIndex = 1;
|
|
//
|
|
// passwordBox
|
|
//
|
|
this.passwordBox.Location = new System.Drawing.Point(75, 38);
|
|
this.passwordBox.Name = "passwordBox";
|
|
this.passwordBox.Size = new System.Drawing.Size(156, 20);
|
|
this.passwordBox.TabIndex = 2;
|
|
this.passwordBox.UseSystemPasswordChar = true;
|
|
//
|
|
// usernameLabel
|
|
//
|
|
this.usernameLabel.AutoSize = true;
|
|
this.usernameLabel.Location = new System.Drawing.Point(11, 15);
|
|
this.usernameLabel.Name = "usernameLabel";
|
|
this.usernameLabel.Size = new System.Drawing.Size(58, 13);
|
|
this.usernameLabel.TabIndex = 3;
|
|
this.usernameLabel.Text = "Username:";
|
|
//
|
|
// passwordLabel
|
|
//
|
|
this.passwordLabel.AutoSize = true;
|
|
this.passwordLabel.Location = new System.Drawing.Point(11, 41);
|
|
this.passwordLabel.Name = "passwordLabel";
|
|
this.passwordLabel.Size = new System.Drawing.Size(56, 13);
|
|
this.passwordLabel.TabIndex = 4;
|
|
this.passwordLabel.Text = "Password:";
|
|
//
|
|
// registerBtn
|
|
//
|
|
this.registerBtn.Location = new System.Drawing.Point(14, 103);
|
|
this.registerBtn.Name = "registerBtn";
|
|
this.registerBtn.Size = new System.Drawing.Size(217, 24);
|
|
this.registerBtn.TabIndex = 5;
|
|
this.registerBtn.Text = "Register";
|
|
this.registerBtn.UseVisualStyleBackColor = true;
|
|
this.registerBtn.Click += new System.EventHandler(this.registerBtn_Click);
|
|
//
|
|
// statusLabel
|
|
//
|
|
this.statusLabel.AutoSize = true;
|
|
this.statusLabel.ForeColor = System.Drawing.SystemColors.GrayText;
|
|
this.statusLabel.Location = new System.Drawing.Point(14, 132);
|
|
this.statusLabel.Name = "statusLabel";
|
|
this.statusLabel.Size = new System.Drawing.Size(146, 13);
|
|
this.statusLabel.TabIndex = 6;
|
|
this.statusLabel.Text = "Please enter your credentials.";
|
|
//
|
|
// LoginForm
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(244, 152);
|
|
this.Controls.Add(this.statusLabel);
|
|
this.Controls.Add(this.registerBtn);
|
|
this.Controls.Add(this.passwordLabel);
|
|
this.Controls.Add(this.usernameLabel);
|
|
this.Controls.Add(this.passwordBox);
|
|
this.Controls.Add(this.usernameBox);
|
|
this.Controls.Add(this.loginBtn);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "LoginForm";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
this.Text = "Good Application";
|
|
this.Load += new System.EventHandler(this.LoginForm_Load);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Button loginBtn;
|
|
private System.Windows.Forms.TextBox usernameBox;
|
|
private System.Windows.Forms.TextBox passwordBox;
|
|
private System.Windows.Forms.Label usernameLabel;
|
|
private System.Windows.Forms.Label passwordLabel;
|
|
private System.Windows.Forms.Button registerBtn;
|
|
private System.Windows.Forms.Label statusLabel;
|
|
}
|
|
}
|
|
|