-
Notifications
You must be signed in to change notification settings - Fork 1
/
Login.cs
252 lines (168 loc) · 4.96 KB
/
Login.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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
using Loader;
using System;
using System.IO;
using System.Threading;
using System.Runtime.InteropServices;
using Microsoft.Win32;
using System.Diagnostics;
using System.Net;
using System.Windows.Forms;
using System.Drawing;
using ICSharpCode.SharpZipLib.Zip;
namespace KeyAuth
{
public partial class Login : Form
{
//Replace with your C# credentials from keyauth.win
public static api KeyAuthApp = new api(
name: "",
ownerid: "",
secret: "",
version: ""
);
public Login()
{
InitializeComponent();
}
private void siticoneControlBox1_Click(object sender, EventArgs e)
{
Environment.Exit(0);
}
private void Login_Load(object sender, EventArgs e)
{
KeyAuthApp.init();
if (!KeyAuthApp.response.success)
{
MessageBox.Show(KeyAuthApp.response.message);
Environment.Exit(0);
}
KeyAuthApp.check();
}
static string random_string()
{
string str = null;
Random random = new Random();
for (int i = 0; i < 5; i++)
{
str += Convert.ToChar(Convert.ToInt32(Math.Floor(26 * random.NextDouble() + 65))).ToString();
}
return str;
}
private void LoginBtn_Click(object sender, EventArgs e)
{
}
private void RgstrBtn_Click(object sender, EventArgs e)
{
KeyAuthApp.register(username.Text, password.Text, key.Text);
if (KeyAuthApp.response.success)
{
Main main = new Main();
main.Show();
this.Hide();
}
}
private void LicBtn_Click(object sender, EventArgs e)
{
KeyAuthApp.license(key.Text);
if (KeyAuthApp.response.success)
{
Main main = new Main();
main.Show();
this.Hide();
}
}
private void pictureBox3_Click(object sender, EventArgs e)
{
}
private void button2_Click(object sender, EventArgs e)
{
KeyAuthApp.login(username.Text, password.Text);
if (KeyAuthApp.response.success)
{
Main main = new Main();
main.Show();
this.Hide();
}
}
private void username_TextChanged(object sender, EventArgs e)
{
}
private void textBox4_TextChanged(object sender, EventArgs e)
{
}
private void textBox4_TextChanged_1(object sender, EventArgs e)
{
}
private void textBox4_Click(object sender, EventArgs e)
{
this.Size = new Size(247, 197);
key.Visible = true;
textBox4.Visible = false;
button2.Visible = false;
textBox6.Visible = true;
key.Visible = true;
register.Visible = true;
pictureBox6.Visible = true;
pictureBox7.Visible = true;
}
private void textBox4_TextChanged_2(object sender, EventArgs e)
{
}
private void register_Click(object sender, EventArgs e)
{
KeyAuthApp.register(username.Text, password.Text, key.Text);
if (KeyAuthApp.response.success)
{
Main main = new Main();
main.Show();
this.Hide();
}
}
private void label1_Click(object sender, EventArgs e)
{
}
private void password_TextChanged(object sender, EventArgs e)
{
}
private void textBox3_TextChanged(object sender, EventArgs e)
{
}
private void textBox2_TextChanged(object sender, EventArgs e)
{
}
private void textBox1_TextChanged(object sender, EventArgs e)
{
}
private void pictureBox4_Click(object sender, EventArgs e)
{
}
private void pictureBox6_Click(object sender, EventArgs e)
{
}
private void pictureBox1_Click(object sender, EventArgs e)
{
}
private void label2_Click(object sender, EventArgs e)
{
}
private void key_TextChanged(object sender, EventArgs e)
{
}
private void textBox6_TextChanged(object sender, EventArgs e)
{
}
private void pictureBox2_Click(object sender, EventArgs e)
{
}
private void pictureBox7_Click(object sender, EventArgs e)
{
}
private void pictureBox8_Click(object sender, EventArgs e)
{
}
private void textBox4_Enter(object sender, EventArgs e)
{
this.ActiveControl = null;
}
}
}