diff --git a/.vs/AwesomeEmailExtractor/project-colors.json b/.vs/AwesomeEmailExtractor/project-colors.json new file mode 100644 index 0000000..e49ce8c --- /dev/null +++ b/.vs/AwesomeEmailExtractor/project-colors.json @@ -0,0 +1,11 @@ +{ + "Version": 1, + "ProjectMap": { + "fe70a2f9-d831-462e-8705-b14623544f1c": { + "ProjectGuid": "fe70a2f9-d831-462e-8705-b14623544f1c", + "DisplayName": "AwesomeEmailExtractor", + "ColorIndex": 0 + } + }, + "NextColorIndex": 1 +} \ No newline at end of file diff --git a/AuthorizationForm.Designer.cs b/AuthorizationForm.Designer.cs new file mode 100644 index 0000000..88bda87 --- /dev/null +++ b/AuthorizationForm.Designer.cs @@ -0,0 +1,120 @@ +namespace AwesomeEmailExtractor +{ + partial class AuthorizationForm + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.loginButton = new System.Windows.Forms.Button(); + this.registerButton = new System.Windows.Forms.Button(); + this.entryLogin = new System.Windows.Forms.TextBox(); + this.label1 = new System.Windows.Forms.Label(); + this.label2 = new System.Windows.Forms.Label(); + this.entryPassword = new System.Windows.Forms.TextBox(); + this.SuspendLayout(); + // + // loginButton + // + this.loginButton.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204))); + this.loginButton.Location = new System.Drawing.Point(12, 127); + this.loginButton.Name = "loginButton"; + this.loginButton.Size = new System.Drawing.Size(293, 23); + this.loginButton.TabIndex = 0; + this.loginButton.Text = "Авторизоваться"; + this.loginButton.UseVisualStyleBackColor = true; + // + // registerButton + // + this.registerButton.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204))); + this.registerButton.Location = new System.Drawing.Point(12, 156); + this.registerButton.Name = "registerButton"; + this.registerButton.Size = new System.Drawing.Size(293, 23); + this.registerButton.TabIndex = 1; + this.registerButton.Text = "Зарегистрироваться"; + this.registerButton.UseVisualStyleBackColor = true; + // + // entryLogin + // + this.entryLogin.Location = new System.Drawing.Point(110, 32); + this.entryLogin.Name = "entryLogin"; + this.entryLogin.Size = new System.Drawing.Size(195, 20); + this.entryLogin.TabIndex = 2; + // + // label1 + // + this.label1.AutoSize = true; + this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204))); + this.label1.Location = new System.Drawing.Point(12, 30); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(77, 25); + this.label1.TabIndex = 3; + this.label1.Text = "Логин:"; + // + // label2 + // + this.label2.AutoSize = true; + this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204))); + this.label2.Location = new System.Drawing.Point(12, 77); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(92, 25); + this.label2.TabIndex = 5; + this.label2.Text = "Пароль:"; + // + // entryPassword + // + this.entryPassword.Location = new System.Drawing.Point(110, 79); + this.entryPassword.Name = "entryPassword"; + this.entryPassword.Size = new System.Drawing.Size(195, 20); + this.entryPassword.TabIndex = 4; + // + // AuthorizationForm + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(317, 191); + this.Controls.Add(this.label2); + this.Controls.Add(this.entryPassword); + this.Controls.Add(this.label1); + this.Controls.Add(this.entryLogin); + this.Controls.Add(this.registerButton); + this.Controls.Add(this.loginButton); + this.Name = "AuthorizationForm"; + this.Text = "Авторизоваться"; + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private System.Windows.Forms.Button loginButton; + private System.Windows.Forms.Button registerButton; + private System.Windows.Forms.TextBox entryLogin; + private System.Windows.Forms.Label label1; + private System.Windows.Forms.Label label2; + private System.Windows.Forms.TextBox entryPassword; + } +} \ No newline at end of file diff --git a/AuthorizationForm.cs b/AuthorizationForm.cs new file mode 100644 index 0000000..5c3193b --- /dev/null +++ b/AuthorizationForm.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace AwesomeEmailExtractor +{ + public partial class AuthorizationForm : Form + { + public AuthorizationForm() + { + InitializeComponent(); + } + + } +} diff --git a/AuthorizationForm.resx b/AuthorizationForm.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/AuthorizationForm.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/AwesomeEmailExtractor.csproj b/AwesomeEmailExtractor.csproj index 3ae428d..250de0e 100644 --- a/AwesomeEmailExtractor.csproj +++ b/AwesomeEmailExtractor.csproj @@ -46,6 +46,12 @@ + + Form + + + AuthorizationForm.cs + Form @@ -55,6 +61,9 @@ + + AuthorizationForm.cs + MainForm.cs