Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Zheng Yile
codiaclient
Commits
fd189f2d
Commit
fd189f2d
authored
Jul 05, 2021
by
曹高翔
Browse files
现在当进入重置密码和注册页面时,窗体标题将会改变
parent
4305517e
Changes
1
Hide whitespace changes
Inline
Side-by-side
loginFunctions.py
View file @
fd189f2d
...
...
@@ -156,6 +156,7 @@ def AcquireVerification():
# 打开注册界面
def
ShowRegister
():
windowLogin
.
setWindowTitle
(
'欢迎使用Codia——注册'
)
uiLogin
.
frameLogin
.
hide
()
uiLogin
.
frameRegister
.
show
()
if
uiLogin
.
lineEditLoginUsername
.
text
():
...
...
@@ -164,6 +165,7 @@ def ShowRegister():
# 打开重置密码界面
def
ShowReset
():
windowLogin
.
setWindowTitle
(
'欢迎使用Codia——重置密码'
)
uiLogin
.
frameLogin
.
hide
()
uiLogin
.
frameReset
.
show
()
if
uiLogin
.
lineEditLoginUsername
.
text
():
...
...
@@ -226,12 +228,14 @@ def Reset():
# 从注册界面返回主界面
def
RegisterReturn
():
windowLogin
.
setWindowTitle
(
'欢迎使用Codia——登录'
)
uiLogin
.
frameLogin
.
show
()
uiLogin
.
frameRegister
.
hide
()
# 从重置密码界面返回主界面
def
ResetReturn
():
windowLogin
.
setWindowTitle
(
'欢迎使用Codia——登录'
)
uiLogin
.
frameLogin
.
show
()
uiLogin
.
frameReset
.
hide
()
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment