123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- 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 ИС32Осадчий
- {
- public partial class Form1 : Form
- {
- public Form1()
- {
- InitializeComponent();
- }
- private void button1_Click(object sender, EventArgs e)
- {
- if (textBox1.Text == "gn0354mbiork@outlook.com")
- {
- if (textBox2.Text == "uzWC67")
- {
- Главное_меню f1 = new Главное_меню();
- this.Hide();
- f1.Show();
- }
- else if (textBox1.Text == "1o4l05k8dwpv@yahoo.com")
- {
- if (textBox2.Text == "8ntwUp")
- {
- Главное_меню f1 = new Главное_меню();
- this.Hide();
- f1.Show();
- }
- }
- else
- MessageBox.Show("Не правильный логин или пароль");
- textBox1.Clear();
- textBox2.Clear();
- }
- }
- private void button2_Click(object sender, EventArgs e)
- {
- this.Close();
- MessageBox.Show("До свидания!!!");
- }
- }
- }
|