def init_loginLabel():
global IDInputLabel, PWInputLabel
fontemp = font.Font(sm_Frame, size=40, weight='bold')
fontemp2 = font.Font(sm_Frame, size=30, weight='bold')
fontemp3 = font.Font(sm_Frame, size=20, weight='bold')
titleLabel = Label(sm_Frame, font=fontemp, text="SEND E-MAIL", bg='white')
titleLabel.place(x=470, y=150)
IDLabel = Label(sm_Frame, font=fontemp2, text="ID", bg='white')
IDLabel.place(x=350, y=250)
IDInputLabel = Entry(sm_Frame, font=fontemp2, width=18, borderwidth=3, relief='ridge', fg='blue')
IDInputLabel.place(x=450, y=250)
PWLabel = Label(sm_Frame, font=fontemp2, text="PW", bg='white')
PWLabel.place(x=335, y=350)
PWInputLabel = Entry(sm_Frame, font=fontemp2, width=18, borderwidth=3, relief='ridge', fg='blue', show='*')
PWInputLabel.place(x=450, y=350)
sendButton = Button(sm_Frame, font=fontemp3, text="Send", command=lambda: sendMail())
sendButton.place(x=600, y=550)
#============================================
评论列表
文章目录