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
Commits
3fa660a8
Commit
3fa660a8
authored
3 years ago
by
Krish Moodbidri
Browse files
Options
Downloads
Patches
Plain Diff
fixed message passing error
parent
cee9f9c2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!34
fixed message passing error
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
app/__init__.py
+1
-1
1 addition, 1 deletion
app/__init__.py
app/templates/account/certify.html
+1
-1
1 addition, 1 deletion
app/templates/account/certify.html
with
2 additions
and
2 deletions
app/__init__.py
+
1
−
1
View file @
3fa660a8
...
@@ -58,7 +58,7 @@ def create_app(config_name):
...
@@ -58,7 +58,7 @@ def create_app(config_name):
username
=
session
[
'
user
'
].
get
(
'
username
'
),
username
=
session
[
'
user
'
].
get
(
'
username
'
),
fullname
=
session
[
'
user
'
].
get
(
'
fullname
'
),
email
=
session
[
'
user
'
].
get
(
'
email
'
),
fullname
=
session
[
'
user
'
].
get
(
'
fullname
'
),
email
=
session
[
'
user
'
].
get
(
'
email
'
),
referrer
=
session
[
'
return_url
'
],
cancel_url
=
vars
.
default_referrer
,
referrer
=
session
[
'
return_url
'
],
cancel_url
=
vars
.
default_referrer
,
cancel_msg
=
messages
.
cancel_message
,
certification_message
_msg
=
messages
.
certification_message
)
cancel_msg
=
messages
.
cancel_message
,
certification_message
=
messages
.
certification_message
)
else
:
else
:
return
render_template
(
'
auth/SignUp.html
'
,
room_id
=
session
[
'
uid
'
],
return
render_template
(
'
auth/SignUp.html
'
,
room_id
=
session
[
'
uid
'
],
username
=
session
[
'
user
'
].
get
(
'
username
'
),
username
=
session
[
'
user
'
].
get
(
'
username
'
),
...
...
This diff is collapsed.
Click to expand it.
app/templates/account/certify.html
+
1
−
1
View file @
3fa660a8
...
@@ -94,7 +94,7 @@
...
@@ -94,7 +94,7 @@
</div>
</div>
<br>
<br>
<div
class=
"col-md-7 col-sm-7 my-col"
>
<div
class=
"col-md-7 col-sm-7 my-col"
>
<button
class=
"btn btn-danger btn-md"
id=
"cancel"
name=
"cancel"
type=
"button"
onClick=
"renderDom('Account C
r
eation Cancelled','{{ cancel_msg |safe }}', null)"
>
Cancel
</button>
<button
class=
"btn btn-danger btn-md"
id=
"cancel"
name=
"cancel"
type=
"button"
onClick=
"renderDom('Account Ce
rtific
ation Cancelled','{{ cancel_msg |safe }}', null)"
>
Cancel
</button>
<button
class=
"btn btn-primary btn-md"
id=
"submit"
name=
"submit"
type=
"button"
value=
"Submit"
onclick=
"displayloading1();certify_account()"
>
Certify Account
</button>
<button
class=
"btn btn-primary btn-md"
id=
"submit"
name=
"submit"
type=
"button"
value=
"Submit"
onclick=
"displayloading1();certify_account()"
>
Certify Account
</button>
</div>
</div>
</form>
</form>
...
...
This diff is collapsed.
Click to expand it.
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