2025-06-19 23:24:39 -07:00

162 lines
5.9 KiB
C#

namespace qtc_net_client_2.Forms
{
partial class Login
{
/// <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(Login));
pbLoginBanner = new PictureBox();
tbEmail = new TextBox();
lblEmail = new Label();
label1 = new Label();
tbPassword = new TextBox();
btnLogin = new Button();
llblRegister = new LinkLabel();
cbRememberMe = new CheckBox();
((System.ComponentModel.ISupportInitialize)pbLoginBanner).BeginInit();
SuspendLayout();
//
// pbLoginBanner
//
pbLoginBanner.Image = Properties.Resources.LoginBanner;
pbLoginBanner.Location = new Point(-4, 0);
pbLoginBanner.Name = "pbLoginBanner";
pbLoginBanner.Size = new Size(521, 99);
pbLoginBanner.SizeMode = PictureBoxSizeMode.StretchImage;
pbLoginBanner.TabIndex = 0;
pbLoginBanner.TabStop = false;
//
// tbEmail
//
tbEmail.Location = new Point(71, 106);
tbEmail.Name = "tbEmail";
tbEmail.Size = new Size(424, 23);
tbEmail.TabIndex = 1;
//
// lblEmail
//
lblEmail.AutoSize = true;
lblEmail.Font = new Font("Segoe UI Light", 9F);
lblEmail.ForeColor = SystemColors.ControlLight;
lblEmail.Location = new Point(32, 109);
lblEmail.Name = "lblEmail";
lblEmail.Size = new Size(33, 15);
lblEmail.TabIndex = 2;
lblEmail.Text = "Email";
//
// label1
//
label1.AutoSize = true;
label1.Font = new Font("Segoe UI Light", 9F);
label1.ForeColor = SystemColors.ControlLight;
label1.Location = new Point(11, 138);
label1.Name = "label1";
label1.Size = new Size(55, 15);
label1.TabIndex = 4;
label1.Text = "Password";
//
// tbPassword
//
tbPassword.Location = new Point(71, 135);
tbPassword.Name = "tbPassword";
tbPassword.PasswordChar = '*';
tbPassword.Size = new Size(424, 23);
tbPassword.TabIndex = 3;
//
// btnLogin
//
btnLogin.Location = new Point(71, 164);
btnLogin.Name = "btnLogin";
btnLogin.Size = new Size(75, 23);
btnLogin.TabIndex = 5;
btnLogin.Text = "Login";
btnLogin.UseVisualStyleBackColor = true;
btnLogin.Click += btnLogin_Click;
//
// llblRegister
//
llblRegister.AutoSize = true;
llblRegister.Font = new Font("Segoe UI Light", 9F);
llblRegister.LinkColor = SystemColors.ControlLight;
llblRegister.Location = new Point(148, 168);
llblRegister.Name = "llblRegister";
llblRegister.Size = new Size(48, 15);
llblRegister.TabIndex = 6;
llblRegister.TabStop = true;
llblRegister.Text = "Register";
llblRegister.LinkClicked += llblRegister_LinkClicked;
//
// cbRememberMe
//
cbRememberMe.AutoSize = true;
cbRememberMe.Font = new Font("Segoe UI Light", 9F);
cbRememberMe.ForeColor = SystemColors.ControlLight;
cbRememberMe.Location = new Point(198, 168);
cbRememberMe.Name = "cbRememberMe";
cbRememberMe.Size = new Size(157, 19);
cbRememberMe.TabIndex = 7;
cbRememberMe.Text = "Remember Me For 7 Days";
cbRememberMe.UseVisualStyleBackColor = true;
//
// frmLogin
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
BackColor = Color.DodgerBlue;
ClientSize = new Size(515, 203);
Controls.Add(cbRememberMe);
Controls.Add(llblRegister);
Controls.Add(btnLogin);
Controls.Add(label1);
Controls.Add(tbPassword);
Controls.Add(lblEmail);
Controls.Add(tbEmail);
Controls.Add(pbLoginBanner);
FormBorderStyle = FormBorderStyle.FixedDialog;
Icon = (Icon)resources.GetObject("$this.Icon");
MaximizeBox = false;
Name = "frmLogin";
StartPosition = FormStartPosition.CenterParent;
Text = "QtC.NET Client - Login";
Load += frmLogin_Load;
((System.ComponentModel.ISupportInitialize)pbLoginBanner).EndInit();
ResumeLayout(false);
PerformLayout();
}
#endregion
private PictureBox pbLoginBanner;
private TextBox tbEmail;
private Label lblEmail;
private Label label1;
private TextBox tbPassword;
private Button btnLogin;
private LinkLabel llblRegister;
private CheckBox cbRememberMe;
}
}