Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
B
Breeze
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
3
Issues
3
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DeStream-public
Breeze
Commits
09a2e498
Commit
09a2e498
authored
May 24, 2017
by
dev0tion
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add temporary redirect after wallet creation
parent
9b2b998d
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
6 deletions
+7
-6
create.component.html
Breeze.UI/src/app/setup/create/create.component.html
+1
-1
create.component.ts
Breeze.UI/src/app/setup/create/create.component.ts
+6
-5
No files found.
Breeze.UI/src/app/setup/create/create.component.html
View file @
09a2e498
...
@@ -34,7 +34,7 @@
...
@@ -34,7 +34,7 @@
<div
class=
"row"
>
<div
class=
"row"
>
<div
class=
"col"
id=
"mnemonic"
>
<div
class=
"col"
id=
"mnemonic"
>
<label>
Mnemonic:
</label>
<label>
Mnemonic:
</label>
<label>
{{
responseMessage
}}
</label>
<label>
{{
mnemonic
}}
</label>
</div>
</div>
</div>
</div>
</div>
</div>
Breeze.UI/src/app/setup/create/create.component.ts
View file @
09a2e498
...
@@ -22,8 +22,7 @@ export class CreateComponent {
...
@@ -22,8 +22,7 @@ export class CreateComponent {
private
createWalletForm
:
FormGroup
;
private
createWalletForm
:
FormGroup
;
private
newWallet
:
WalletCreation
;
private
newWallet
:
WalletCreation
;
private
responseMessage
:
string
;
private
mnemonic
:
string
;
private
errorMessage
:
string
;
private
buildCreateForm
():
void
{
private
buildCreateForm
():
void
{
this
.
createWalletForm
=
this
.
fb
.
group
({
this
.
createWalletForm
=
this
.
fb
.
group
({
...
@@ -94,13 +93,15 @@ export class CreateComponent {
...
@@ -94,13 +93,15 @@ export class CreateComponent {
.
subscribe
(
.
subscribe
(
response
=>
{
response
=>
{
if
(
response
.
status
>=
200
&&
response
.
status
<
400
){
if
(
response
.
status
>=
200
&&
response
.
status
<
400
){
this
.
responseMessage
=
response
.
json
();
this
.
mnemonic
=
response
.
json
();
alert
(
"Your wallet has been created. Please write down your 12 word passphrase:
\n
"
+
this
.
mnemonic
+
"
\n
You will be redirected to the decryption page."
);
this
.
router
.
navigate
([
''
]);
}
}
},
},
error
=>
{
error
=>
{
if
(
error
.
status
>=
400
)
{
if
(
error
.
status
>=
400
)
{
this
.
errorMessage
=
error
;
let
errorMessage
=
error
;
console
.
log
(
this
.
errorMessage
);
console
.
log
(
errorMessage
);
}
}
}
}
);
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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