Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
Team6-Digital Insight for Health
Manage
Activity
Members
Labels
Plan
Issues
12
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Chen Liang
Team6-Digital Insight for Health
Commits
b16760c7
Commit
b16760c7
authored
4 months ago
by
Yulong Wang
Browse files
Options
Downloads
Plain Diff
Merge branch 'wyl' into 'main'
UPDATE See merge request
!37
parents
33d8fe63
0981f513
No related branches found
No related tags found
1 merge request
!37
UPDATE
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/main/resources/application-dev.yml
+1
-1
1 addition, 1 deletion
src/main/resources/application-dev.yml
src/main/resources/static/html/superAdminView.html
+0
-56
0 additions, 56 deletions
src/main/resources/static/html/superAdminView.html
with
1 addition
and
57 deletions
src/main/resources/application-dev.yml
+
1
−
1
View file @
b16760c7
...
...
@@ -3,4 +3,4 @@ healthcare:
url
:
jdbc:mysql://localhost:3306/health_care
port
:
3306
username
:
root
password
:
472500
\ No newline at end of file
password
:
root
\ No newline at end of file
This diff is collapsed.
Click to expand it.
src/main/resources/static/html/superAdminView.html
+
0
−
56
View file @
b16760c7
...
...
@@ -62,61 +62,5 @@
}
})
var
bool
;
// 页面加载后生成验证码
window
.
onload
=
function
()
{
createCode
(
4
);
}
function
createCode
(
length
)
{
var
code
=
""
;
var
checkCode
=
document
.
getElementById
(
"
checkCode
"
);
var
codeChars
=
"
0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
"
.
split
(
""
);
for
(
var
i
=
0
;
i
<
length
;
i
++
)
{
var
charNum
=
Math
.
floor
(
Math
.
random
()
*
codeChars
.
length
);
code
+=
codeChars
[
charNum
];
}
if
(
checkCode
)
{
checkCode
.
innerHTML
=
code
;
}
}
function
validateCode
()
{
var
inputCode
=
document
.
getElementById
(
"
inputCode
"
).
value
;
var
checkCode
=
document
.
getElementById
(
"
checkCode
"
).
innerHTML
;
if
(
!
inputCode
)
{
alert
(
"
Please enter the verification code!
"
);
return
false
;
}
if
(
inputCode
.
toUpperCase
()
!==
checkCode
.
toUpperCase
())
{
alert
(
"
Verification code error!
"
);
createCode
(
4
);
return
false
;
}
return
true
;
}
const
form
=
document
.
getElementById
(
'
loginForm
'
);
form
.
addEventListener
(
'
submit
'
,
function
(
event
)
{
event
.
preventDefault
();
// 验证验证码
if
(
!
validateCode
())
{
return
;
}
// 验证用户名和密码
const
username
=
document
.
getElementById
(
'
username
'
).
value
;
const
password
=
document
.
getElementById
(
'
password
'
).
value
;
if
(
username
===
'
2649783657@qq.com
'
&&
password
===
'
admin
'
)
{
alert
(
"
Login successful! Redirecting...
"
);
window
.
location
.
href
=
"
superAdminView.html
"
;
// 成功后跳转
}
else
{
alert
(
"
Invalid email or password. Please try again.
"
);
}
});
</script>
</html>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Mingyuan Chen
@c23130518
mentioned in commit
cb5bda43
·
4 months ago
mentioned in commit
cb5bda43
mentioned in commit cb5bda433b4c0a616319ec1a68f225024f11002b
Toggle commit list
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment