-
Notifications
You must be signed in to change notification settings - Fork 0
/
forgotpwd.py
58 lines (42 loc) · 1.5 KB
/
forgotpwd.py
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
from tkinter import *
root = Tk()
#func
#variables
bgcolor4 = 'cornsilk2'
logo4 = PhotoImage(file='logo//plain_logo.png')
icon4 = PhotoImage('logo//venus_icon.ico')
root.geometry('1270x685')
root.minsize(width=900, height=600)
root.title('Venus')
root.iconbitmap(icon4)
root.config(bg=bgcolor4)
frame14 = Frame(root, bg=bgcolor4)
frame14.pack(fill=X)
iconLabel4 = Label(frame14,
bg=bgcolor4,
image= logo4)
iconLabel4.pack(pady=10)
loginframe4 = Frame(root,
bg= 'white')
loginframe4.pack(anchor='center')
loginLabel4 = LabelFrame(loginframe4, text='Forgot Password', font=('arial', 10),
bg= 'white',
)
loginLabel4.pack(fill=X, pady= 10, padx=10)
emailLabel4 =Label(loginLabel4, text='Email', font=('times new roman', 15),
bg='white')
emailLabel4.grid(row=0, column=0, padx=100, sticky='w')
emailEntry4 = Entry(loginLabel4, font=('arial', 20), bd=6, width= 25)
emailEntry4.grid(row=1, column=0, pady=10, padx=100)
loginButton4 = Button(loginLabel4, text='Request Password Reset',
font=('times new roman', 15),
bg='blue',
fg='white',
activebackground='blue')
loginButton4.grid(row=6, column=0, pady=10)
registerButton4 = Button(loginframe4, text = 'back to login',
font=('times new roman', 15, 'bold'),
bd=0,
)
registerButton4.pack(fill=X)
root.mainloop()