Commit e7c1c465 by BellCodeEditor

save project

parent 0651e310
Showing with 26 additions and 1 deletions
import tkinter from tkinter import *
w=Tk()
w.title("用户注册")
w.geometry("500x350+500+200")
w.config(bg="#101010")
w.resizable(False,False)
l1=Label(w,text="注册",font=("",30),fg="#FFFFFF",bg="#101010")
l1.place(x=20,y=20)
l=Label(w,text="—"*50,font=("",20),fg="#FFFFFF",bg="#101010")
l.place(x=0,y=70)
l2=Label(w,text="账号:",font=("",20),fg="#FFFFFF",bg="#101010")
l2.place(x=20,y=100)
e1=Entry(w,font=("",20))
e1.place(x=100,y=100,width=380)
l3=Label(w,text="密码:",font=("",20),fg="#FFFFFF",bg="#101010")
l3.place(x=20,y=150)
e2=Entry(w,font=("",20),show="·")
e2.place(x=100,y=150,width=380)
l4=Label(w,text="确认密码:",font=("",20),fg="#FFFFFF",bg="#101010")
l4.place(x=20,y=200)
e3=Entry(w,font=("",20),show="·")
e3.place(x=150,y=200,width=330)
b=Button(w,font=("",20),text="提交",fg="#0000FF",bg="#F0F0F0")
b.place(x=150,y=260,width=200)
mainloop()
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment