104 lines
3.7 KiB
C#
104 lines
3.7 KiB
C#
namespace qtc_net_client_2.Forms
|
|
{
|
|
partial class ResendVerificationEmail
|
|
{
|
|
/// <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()
|
|
{
|
|
pbLoginBanner = new PictureBox();
|
|
tbEmail = new TextBox();
|
|
lblHeader = new Label();
|
|
btnSend = new Button();
|
|
((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 = 1;
|
|
pbLoginBanner.TabStop = false;
|
|
//
|
|
// tbEmail
|
|
//
|
|
tbEmail.Location = new Point(50, 124);
|
|
tbEmail.Name = "tbEmail";
|
|
tbEmail.Size = new Size(424, 23);
|
|
tbEmail.TabIndex = 3;
|
|
//
|
|
// lblHeader
|
|
//
|
|
lblHeader.AutoSize = true;
|
|
lblHeader.Font = new Font("Segoe UI Light", 9F);
|
|
lblHeader.ForeColor = SystemColors.ControlLight;
|
|
lblHeader.Location = new Point(54, 106);
|
|
lblHeader.Name = "lblHeader";
|
|
lblHeader.Size = new Size(412, 15);
|
|
lblHeader.TabIndex = 5;
|
|
lblHeader.Text = "Please Enter Your Email, If An Account Exists With This Email, We'll Send You A Link";
|
|
//
|
|
// btnSend
|
|
//
|
|
btnSend.Location = new Point(224, 153);
|
|
btnSend.Name = "btnSend";
|
|
btnSend.Size = new Size(75, 23);
|
|
btnSend.TabIndex = 6;
|
|
btnSend.Text = "Send";
|
|
btnSend.UseVisualStyleBackColor = true;
|
|
btnSend.Click += btnSend_Click;
|
|
//
|
|
// ResendVerificationEmail
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
BackColor = Color.DodgerBlue;
|
|
ClientSize = new Size(515, 187);
|
|
Controls.Add(btnSend);
|
|
Controls.Add(lblHeader);
|
|
Controls.Add(tbEmail);
|
|
Controls.Add(pbLoginBanner);
|
|
FormBorderStyle = FormBorderStyle.FixedDialog;
|
|
MaximizeBox = false;
|
|
MinimizeBox = false;
|
|
Name = "ResendVerificationEmail";
|
|
StartPosition = FormStartPosition.CenterScreen;
|
|
Text = "QtC.NET Client - Resend Verification Email";
|
|
((System.ComponentModel.ISupportInitialize)pbLoginBanner).EndInit();
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private PictureBox pbLoginBanner;
|
|
private TextBox tbEmail;
|
|
private Label lblHeader;
|
|
private Button btnSend;
|
|
}
|
|
} |