Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
account-app
Manage
Activity
Members
Labels
Plan
Issues
9
Issue boards
Milestones
Wiki
Code
Merge requests
4
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
account-app
Merge requests
!41
Feat Annual recertification workflow
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Feat Annual recertification workflow
krish94/self-reg-form:feat-certify-workflow
into
master
Overview
0
Commits
7
Pipelines
7
Changes
4
Merged
Krish Moodbidri
requested to merge
krish94/self-reg-form:feat-certify-workflow
into
master
3 years ago
Overview
0
Commits
7
Pipelines
7
Changes
4
Expand
Created and send pre_certification and certification message to certify.html
Added 2 checkboxes for user policies and toggle button logic to certify account
Rewrote dom from step 1 (pre_certification) to step 2 (certification page)
👍
0
👎
0
Merge request reports
Compare
master
version 6
e63f9e2e
3 years ago
version 5
054d1bd4
3 years ago
version 4
f2fad2fe
3 years ago
version 3
0bd36396
3 years ago
version 2
27aa5595
3 years ago
version 1
b3e88006
3 years ago
master (base)
and
version 6
latest version
49df1f18
7 commits,
3 years ago
version 6
e63f9e2e
6 commits,
3 years ago
version 5
054d1bd4
5 commits,
3 years ago
version 4
f2fad2fe
4 commits,
3 years ago
version 3
0bd36396
3 commits,
3 years ago
version 2
27aa5595
2 commits,
3 years ago
version 1
b3e88006
1 commit,
3 years ago
4 files
+
35
−
11
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
app/static/scripts/function.js
+
14
−
2
Options
function
preCertification
()
{
const
element
=
document
.
getElementById
(
"
pre-certify
"
);
element
.
remove
();
var
x
=
document
.
getElementById
(
"
user-recertify
"
);
if
(
x
.
style
.
display
===
"
block
"
)
{
x
.
style
.
display
=
"
none
"
;
}
else
{
x
.
style
.
display
=
"
block
"
;
}
}
function
check
()
{
var
submitButton
=
document
.
getElementById
(
"
submit
"
);
let
ckbox
=
document
.
getElementById
(
'
agree
'
);
submitButton
.
disabled
=
!
ckbox
.
checked
;
let
ckbox1
=
document
.
getElementById
(
'
agree1
'
);
let
ckbox2
=
document
.
getElementById
(
'
agree2
'
);
submitButton
.
disabled
=
!
(
ckbox1
.
checked
&&
ckbox2
.
checked
);
};
function
displayloading1
()
{
Loading