-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathForm1.cs
216 lines (178 loc) · 6.15 KB
/
Form1.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Data.SqlClient;
using System.Drawing;
using System.Linq;
using System.Security.Cryptography;
using System.Security.Cryptography.X509Certificates;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Cafe_Management_System
{
public partial class Login_form : Form
{
function fn = new function();
string query;
public Login_form()
{
InitializeComponent();
}
private void btn_login_Click(object sender, EventArgs e)
{
query = "select * from users where username='" + txtbx_usrnm.Text + "';";
SqlCommand command = fn.getInstance();
command.CommandText = query;
SqlDataReader reader = command.ExecuteReader();
string Username = "";
string Password = "";
string Salt = "";
while (reader.Read())
{
Username = reader["username"].ToString();
Password = reader["password"].ToString();
Salt = reader["salt"].ToString();
}
reader.Close();
string password = txtbx_pswd.Text;
string salt = Salt;
byte[] passwordBytes = Encoding.UTF8.GetBytes(password + salt);
byte[] hashBytes;
using (SHA256 sha256 = SHA256.Create())
{
hashBytes = sha256.ComputeHash(passwordBytes);
}
string hashedPassword = Convert.ToBase64String(hashBytes);
if (txtbx_usrnm.Text == Username && hashedPassword == Password && txtbx_usrnm.Text!="" && txtbx_pswd.Text!="")
{
Dashboard_Form ds = new Dashboard_Form(Username);
ds.changeLable(Username);
ds.Show();
this.Hide();
}
else if (txtbx_usrnm.Text == "guest" && txtbx_pswd.Text == "123")
{
Dashboard_Form ds = new Dashboard_Form("Guest");
ds.changeLable("guest");
ds.Show();
this.Hide();
}
else
{
MessageBox.Show("Invalid Username or password!");
txtbx_usrnm.Clear();
txtbx_pswd.Clear();
txtbx_usrnm.Focus();
}
command.Dispose();
fn.closeInstance();
}
private void Login_form_Load(object sender, EventArgs e)
{
toolTip1.SetToolTip(btn_login, "Click to Login");
toolTip1.SetToolTip(txtbx_usrnm, "Enter your Username");
toolTip1.SetToolTip(txtbx_pswd, "Enter your Password");
toolTip1.SetToolTip(lnlbl_guest, "Click to Enter as \"Guest\" or Use \"username=guest\" and \"password=123\".");
toolTip1.SetToolTip(lnklbl_forgotpswd, "Click to Recover your Password");
toolTip1.SetToolTip(showpass_checkbox, "Click to Show Password");
//toolTip1.SetToolTip(btn_exit, "Click to Exit");
this.KeyPreview = true;
}
private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
Dashboard_Form ds = new Dashboard_Form("Guest");
ds.changeLable("guest");
ds.Show();
this.Hide();
}
private void txtbx_usrnm_KeyPress(object sender, KeyPressEventArgs e)
{
if (e.KeyChar == (char)Keys.Enter)
{
e.Handled = true;
txtbx_pswd.Focus();
}
}
private void showpass_checkbox_CheckedChanged(object sender, EventArgs e)
{
if (showpass_checkbox.Checked)
{
txtbx_pswd.UseSystemPasswordChar = true;
}
else
{
txtbx_pswd.UseSystemPasswordChar = false;
}
}
private void txtbx_usrnm_TextChanged(object sender, EventArgs e)
{
if (txtbx_usrnm.Text != "")
{
txtbx_usrnm.BackColor = Color.Blue;
}
else
{
txtbx_usrnm.BackColor = Color.White;
}
}
private void linkLabel1_LinkClicked_1(object sender, LinkLabelLinkClickedEventArgs e)
{
Dashboard_Form ds = new Dashboard_Form("reset");
ds.changeLable("reset");
ds.Show();
this.Hide();
}
private void Login_form_KeyPress(object sender, KeyPressEventArgs e)
{
if (e.KeyChar == (char)Keys.Escape)
{
e.Handled = true;
Application.Exit();
}
}
private void toolTip1_Popup(object sender, PopupEventArgs e)
{
}
private void txtbx_pswd_TextChanged_1(object sender, EventArgs e)
{
txtbx_pswd.UseSystemPasswordChar = false;
if (txtbx_pswd.Text == "")
{
txtbx_pswd.BackColor = Color.White;
}
else if (txtbx_pswd.Text != "" && txtbx_pswd.Text.Length < 8)
{
txtbx_pswd.BackColor = Color.IndianRed;
}
else
{
txtbx_pswd.BackColor = Color.LightGreen;
}
}
private void txtbx_pswd_KeyPress_1(object sender, KeyPressEventArgs e)
{
if (e.KeyChar == (char)Keys.Enter)
{
e.Handled = true;
btn_login.PerformClick();
}
}
private void btn_login_MouseHover(object sender, EventArgs e)
{
if (txtbx_usrnm.Text == "" || txtbx_pswd.Text == "" || txtbx_pswd.Text.Length < 8)
{
btn_login.FillColor = Color.IndianRed;
}
else
{
btn_login.FillColor = Color.LightBlue;
}
}
private void btn_login_MouseLeave(object sender, EventArgs e)
{
btn_login.FillColor = Color.FromArgb(111, 71, 9);
}
}
}