Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
S
self-reg-form
Manage
Activity
Members
Labels
Plan
Issues
5
Issue boards
Milestones
Wiki
Code
Merge requests
3
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
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
rc
self-reg-form
Merge requests
!46
changed overlay to display account certification successful
代码
评审变更
检出分支
下载
补丁
文本差异
Merged
changed overlay to display account certification successful
krish94/self-reg-form:feat-certify-overlay
into
master
Overview
0
Commits
1
Pipelines
1
Changes
1
Merged
Krish Moodbidri
requested to merge
krish94/self-reg-form:feat-certify-overlay
into
master
2 years ago
Overview
0
Commits
1
Pipelines
1
Changes
1
Expand
👍
0
👎
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
4c48f108
1 commit,
2 years ago
1 file
+
6
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
app/templates/account/certify.html
+
6
−
3
Options
@@ -21,9 +21,12 @@
});
socket
.
on
(
'
certified
'
,
function
(
msg
)
{
$
(
'
#myModal2
'
).
modal
(
'
hide
'
);
window
.
location
.
replace
(
'
{{ referrer }}
'
);
});
$
(
'
#myModal2 .modal-title
'
).
text
(
"
Account Certification Successful
"
);
$
(
'
#myModal2 .modal-body
'
).
text
(
"
Redirecting...
"
);
setTimeout
(()
=>
{
window
.
location
.
replace
(
'
{{ referrer }}
'
);
},
5000
);
});
socket
.
on
(
'
certify error
'
,
function
(
msg
)
{
console
.
log
(
msg
);
Loading