用Python写一个华丽登陆页面
时间: 2024-01-03 21:03:05 浏览: 83
要写一个华丽的登录页面,你需要使用 Python 的 GUI 库来创建界面。在 Python 中,有很多 GUI 库可供选择,比如 Tkinter、PyQt、wxPython 等等。这里我以 Tkinter 为例,给你一个简单的示例代码:
```python
import tkinter as tk
# 创建窗口
window = tk.Tk()
window.title("欢迎登录")
window.geometry("400x300")
# 添加标签和输入框
tk.Label(window, text="用户名:").place(x=50, y=50)
username_entry = tk.Entry(window)
username_entry.place(x=120, y=50)
tk.Label(window, text="密码:").place(x=50, y=100)
password_entry = tk.Entry(window, show="*")
password_entry.place(x=120, y=100)
# 添加登录按钮
def login():
if username_entry.get() == "admin" and password_entry.get() == "12345":
tk.messagebox.showinfo("提示", "登录成功!")
else:
tk.messagebox.showerror("错误", "用户名或密码错误!")
login_button = tk.Button(window, text="登录", command=login)
login_button.place(x=150, y=150)
# 进入消息循环
window.mainloop()
```
这段代码使用 Tkinter 库创建了一个窗口,并在其中添加了标签、输入框和登录按钮。当用户点击登录按钮时,会执行 `login` 函数来验证用户名和密码是否正确,如果正确则弹出登录成功提示框,否则弹出错误提示框。你可以根据自己的需求来修改代码,让登录页面更加华丽。
阅读全文