-
Notifications
You must be signed in to change notification settings - Fork 0
/
login.kv
346 lines (295 loc) · 6.72 KB
/
login.kv
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
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
# there are three screens
windowManager:
loginWindow:
signupWindow:
logDataWindow:
votingWindow:
# GUI for the login window
<loginWindow>:
ethereumAddress : ethereumAddress
password : password
FloatLayout:
size: root.width, root.height
Label:
text : "Ethereum Address: "
size_hint : 0.2, 0.1
pos_hint : {"x":0.20, "top":0.9}
TextInput:
id : ethereumAddress
write_tab: False
multiline :True
size_hint : 0.3, 0.1
pos_hint : {"x" : 0.40, "top" : 0.9}
Button:
text : "GET ADDRESS"
size_hint : 0.1, 0.1
pos_hint : {"x" : 0.8, "top" : 0.9}
on_release:
root.getAddress()
Label:
text : "PASSWORD: "
size_hint : 0.2, 0.1
pos_hint : {"x" : 0.20, "top" : 0.7}
TextInput:
id : password
write_tab: False
multiline :True
size_hint : 0.3, 0.1
pos_hint : {"x" : 0.40, "top" : 0.7}
Button:
text : "SIGN IN"
size_hint : 0.3, 0.1
pos_hint : {"x" : 0.39, "top" : 0.4}
on_release:
root.validate()
root.manager.transition.direction = "up"
Button:
text : "SIGN UP"
size_hint : 0.3, 0.1
pos_hint : {"x" : 0.39, "top" : 0.2}
on_release:
app.root.current = 'signup'
root.manager.transition.direction = "left"
# GUI for the signup window
<signupWindow>:
password_reg : password_reg
fname_reg : fname_reg
lname_reg : lname_reg
age_reg : age_reg
gender_reg : gender_reg
email_reg : email_reg
FloatLayout:
Label:
text : "Password: "
size_hint : 0.2, 0.1
pos_hint : {"x" : 0.20, "top" : 0.8}
TextInput:
id : password_reg
write_tab: False
multiline :True
size_hint : 0.3, 0.1
pos_hint : {"x" : 0.40, "top" : 0.8}
Label:
text : "First Name: "
size_hint : 0.2, 0.1
pos_hint : {"x" : 0.20, "top" : 0.7}
TextInput:
id : fname_reg
write_tab: False
multiline :True
size_hint : 0.3, 0.1
pos_hint : {"x" : 0.40, "top" : 0.7}
Label:
text : "Last Name: "
size_hint : 0.2, 0.1
pos_hint : {"x" : 0.20, "top" : 0.6}
TextInput:
id : lname_reg
write_tab: False
multiline :True
size_hint : 0.3, 0.1
pos_hint : {"x" : 0.40, "top" : 0.6}
Label:
text : "Age: "
size_hint : 0.2, 0.1
pos_hint : {"x" : 0.20, "top" : 0.5}
TextInput:
id : age_reg
write_tab: False
multiline :True
size_hint : 0.3, 0.1
pos_hint : {"x" : 0.40, "top" : 0.5}
Label:
text : "Gender: "
size_hint : 0.2, 0.1
pos_hint : {"x" : 0.20, "top" : 0.4}
TextInput:
id : gender_reg
write_tab: False
multiline :True
size_hint : 0.3, 0.1
pos_hint : {"x" : 0.40, "top" : 0.4}
Label:
text : "Email: "
size_hint : 0.2, 0.1
pos_hint : {"x" : 0.20, "top" : 0.3}
TextInput:
id : email_reg
write_tab: False
multiline :True
size_hint : 0.3, 0.1
pos_hint : {"x" : 0.40, "top" : 0.3}
Button:
text : "SUBMIT"
size_hint : 0.3, 0.1
pos_hint : {"x" : 0.39, "top" : 0.1}
on_press :
root.signupbtn()
root.manager.transition.direction = "right"
# GUI for the User Details window
<userDetailsWindow>:
fname : fname
age : age
gender : gender
email : email
ethereumAddress : ethereumAddress
FloatLayout:
Label:
text : "User First Name: "
size_hint : 0.2, 0.1
pos_hint : {"x":0.20, "top":0.9}
Label:
text : ""
id: fname
size_hint : 0.2, 0.1
pos_hint : {"x" : 0.40, "top" : 0.9}
Label:
text : "User Age: "
size_hint : 0.2, 0.1
pos_hint : {"x":0.20, "top":0.7}
Label:
text : ""
id : age
size_hint : 0.2, 0.1
pos_hint : {"x" : 0.40, "top" : 0.7}
Label:
text : "User Gender: "
size_hint : 0.2, 0.1
pos_hint : {"x":0.20, "top":0.6}
Label:
text : ""
id : gender
size_hint : 0.2, 0.1
pos_hint : {"x" : 0.40, "top" : 0.6}
Label:
text : "Ethereum Address: "
size_hint : 0.2, 0.1
pos_hint : {"x":0.20, "top":0.5}
Label:
text : ""
id : ethereumAddress
size_hint : 0.2, 0.1
pos_hint : {"x" : 0.55, "top" : 0.5}
Label:
text : "User Email: "
size_hint : 0.2, 0.1
pos_hint : {"x":0.20, "top":0.4}
Label:
text : ""
id : email
size_hint : 0.2, 0.1
pos_hint : {"x" : 0.40, "top" : 0.4}
Button:
text : "LOGOUT"
size_hint : 0.3, 0.1
pos_hint : {"x" : 0.39, "top" : 0.1}
on_press :
root.LOGOUT()
root.manager.transition.direction = "down"
# GUI for the Transaction Details window
<txnDetailsWindow>:
txn_from : txn_from
txn_to: txn_to
txn_contract : txn_contract
txn_hash : txn_hash
txn_gas : txn_gas
txn_nonce : txn_nonce
eth_bal : eth_bal
FloatLayout:
Label:
text : "Transaction From: "
size_hint : 0.2, 0.1
pos_hint : {"x":0.10, "top":0.9}
TextInput:
text : ""
id: txn_from
write_tab: False
multiline :True
text_size: self.width, None
size_hint : 0.5, 0.1
pos_hint : {"x" : 0.30, "top" : 0.9}
Label:
text : "Transaction To: "
size_hint : 0.2, 0.1
pos_hint : {"x":0.10, "top":0.8}
TextInput:
text : ""
id : txn_to
write_tab: False
multiline :True
text_size: self.width, None
size_hint : 0.5, 0.1
pos_hint : {"x" : 0.30, "top" : 0.8}
Label:
text : "Contract Address: "
size_hint : 0.2, 0.1
pos_hint : {"x":0.10, "top":0.7}
TextInput:
text : ""
id : txn_contract
write_tab: False
multiline :True
text_size: self.width, None
size_hint : 0.5, 0.1
pos_hint : {"x" : 0.30, "top" : 0.7}
Label:
text : "Transaction Hash: "
size_hint : 0.2, 0.1
pos_hint : {"x":0.10, "top":0.6}
TextInput:
text : ""
id : txn_hash
write_tab: False
multiline :True
text_size: self.width, None
size_hint : 0.5, 0.1
pos_hint : {"x" : 0.30, "top" : 0.6}
Label:
text : "Transaction Gas: "
size_hint : 0.2, 0.1
pos_hint : {"x":0.10, "top":0.5}
TextInput:
text : ""
id : txn_gas
write_tab: False
multiline :True
text_size: self.width, None
size_hint : 0.5, 0.1
pos_hint : {"x" : 0.30, "top" : 0.5}
Label:
text : "Transaction Nonce: "
size_hint : 0.2, 0.1
pos_hint : {"x":0.10, "top":0.4}
TextInput:
text : ""
id : txn_nonce
write_tab: False
multiline :True
text_size: self.width, None
size_hint : 0.5, 0.1
pos_hint : {"x" : 0.30, "top" : 0.4}
Label:
text : "ETHER Balance: "
size_hint : 0.2, 0.1
pos_hint : {"x":0.10, "top":0.3}
TextInput:
text : ""
id : eth_bal
write_tab: False
multiline :True
text_size: self.width, None
size_hint : 0.5, 0.1
pos_hint : {"x" : 0.30, "top" : 0.3}
Button:
text : "CLOSE"
size_hint : 0.3, 0.1
pos_hint : {"x" : 0.34, "top" : 0.1}
on_press :
root.Close()
root.manager.transition.direction = "down"
# GUI for pop up window
<P>:
Label:
text : "Please enter valid information"
size_hint : 0.2, 0.1
pos_hint : {"x" : 0.3, "top" : 0.8}