-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathAboutUs.py
72 lines (58 loc) · 1.25 KB
/
AboutUs.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
from tkinter import *
def back():
window.destroy()
import LogIn
# login.aboutus()
window = Tk()
window.geometry("753x464")
window.configure(bg="#ffffff")
window.title("Plagiarism Detection System")
canvas = Canvas(
window,
bg="#ffffff",
height=464,
width=753,
bd=0,
highlightthickness=0,
relief="ridge")
canvas.place(x=0, y=0)
background_img = PhotoImage(file=f"AboutusImages/background.png")
background = canvas.create_image(
369.5, 232.0,
image=background_img)
img0 = PhotoImage(file=f"AboutusImages/img0.png")
b0 = Button(
image=img0,
borderwidth=0,
highlightthickness=0,
command=back,
relief="flat")
b0.place(
x=443, y=331,
width=106,
height=41)
img1 = PhotoImage(file=f"AboutusImages/img1.png")
b1 = Button(
image=img1,
borderwidth=0,
highlightthickness=0,
command=back,
relief="flat")
b1.place(
x=583, y=331,
width=106,
height=41)
entry0_img = PhotoImage(file=f"AboutusImages/img_textBox0.png")
entry0_bg = canvas.create_image(
562.5, 211.5,
image=entry0_img)
entry0 = Entry(
bd=0,
bg="#dadada",
highlightthickness=0)
entry0.place(
x=396, y=102,
width=333,
height=217)
window.resizable(False, False)
window.mainloop()