1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- 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 lyahov_tim
- {
- public partial class Авторизация : Form
- {
- public Авторизация()
- {
- InitializeComponent();
- }
- // код на вход в базу под неким логином, который находится в базе
- private void vxod_Click(object sender, EventArgs e)
- {
- var db = new DataClasses1DataContext();
- var query = from c in db.Users
- where (c.Email == login.Text && c.Password == password.Text)
- select c;
- if (query.Count() == 1 && login.Text == "j.doe@amonic.com" && password.Text == "123")
- {
- Form A = new Amonic();
- A.Show();
- this.Hide();
- }
- else if (query.Count() == 1 && login.Text != "j.doe@amonic.com" && password.Text != "123")
- {
- Form u = new Form3();
- u.Show();
- this.Hide();
- }
- else
- {
- MessageBox.Show("Ошибка авторизации");
- }
- }
- // код на выход из программы
- private void exit_Click(object sender, EventArgs e)
- {
- this.Close();
- }
- }
- }
|