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
6692e4eb
Commit
6692e4eb
authored
Jul 12, 2017
by
Benoît
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix all setup pages
parent
b09a8ae5
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
39 additions
and
16 deletions
+39
-16
create.component.html
Breeze.UI/src/app/setup/create/create.component.html
+4
-4
recover.component.html
Breeze.UI/src/app/setup/recover/recover.component.html
+6
-6
setup.component.html
Breeze.UI/src/app/setup/setup.component.html
+3
-3
_custom.scss
Breeze.UI/src/scss/_custom.scss
+11
-2
styles.css
Breeze.UI/src/styles.css
+14
-0
styles.css.map
Breeze.UI/src/styles.css.map
+1
-1
No files found.
Breeze.UI/src/app/setup/create/create.component.html
View file @
6692e4eb
<section
id=
"breeze"
>
<div
class=
"login d-flex align-items-center text-center"
>
<div
class=
"container"
>
<p
class=
"textback text-left mb-5
col-6
row"
><a
(
click
)="
onBackClicked
()"
>
Back
</a></p>
<p
class=
"textback text-left mb-5
offset-3
row"
><a
(
click
)="
onBackClicked
()"
>
Back
</a></p>
<h3
class=
"display-5"
>
Welcome
</h3>
<div
class=
"row d-flex justify-content-center"
>
<form
class=
"col-md-
8
col-xs-12 text-left"
[
formGroup
]="
createWalletForm
"
>
<form
class=
"col-md-
6
col-xs-12 text-left"
[
formGroup
]="
createWalletForm
"
>
<!--<div class="form-group has-success">-->
<div
class=
"form-group"
>
<label
class=
"col-12 row"
for=
"walletName"
>
Name
</label>
<input
type=
"text"
class=
"form-control form-control-success"
formControlName=
"walletName"
id=
"walletName"
placeholder=
"Enter a wallet name."
>
<div
*
ngIf=
"formErrors.walletName"
class=
"
form-control-feedback
"
>
{{ formErrors.walletName }}
</div>
<div
*
ngIf=
"formErrors.walletName"
class=
"
text-danger mt-2
"
>
{{ formErrors.walletName }}
</div>
</div>
<div
class=
"form-group"
>
<label
class=
"text-left"
for=
"walletPassword"
>
Password
</label>
<input
type=
"password"
class=
"form-control form-control-success"
formControlName=
"walletPassword"
id=
"walletPassword"
placeholder=
"Enter a password."
>
<div
*
ngIf=
"formErrors.walletPassword"
class=
"
form-control-feedback
"
>
{{ formErrors.walletPassword }}
</div>
<div
*
ngIf=
"formErrors.walletPassword"
class=
"
text-danger mt-2
"
>
{{ formErrors.walletPassword }}
</div>
</div>
<div
class=
"form-group"
>
<label
class=
"text-left"
for=
"walletNetwork"
>
Network
</label>
...
...
Breeze.UI/src/app/setup/recover/recover.component.html
View file @
6692e4eb
<section
id=
"breeze"
>
<div
class=
"login d-flex align-items-center text-center"
>
<div
class=
"container"
>
<p
class=
"textback text-left mb-5
col-6
row"
><a
(
click
)="
onBackClicked
()"
>
Back
</a></p>
<p
class=
"textback text-left mb-5
offset-3
row"
><a
(
click
)="
onBackClicked
()"
>
Back
</a></p>
<h3
class=
"display-5"
>
Welcome
</h3>
<div
class=
"row d-flex justify-content-center"
>
<form
class=
"col-md-
8
col-xs-12 text-left"
[
formGroup
]="
recoverWalletForm
"
>
<form
class=
"col-md-
6
col-xs-12 text-left"
[
formGroup
]="
recoverWalletForm
"
>
<!--<div class="form-group has-success">-->
<div
class=
"form-group"
>
<label
class=
"col-12 row"
for=
"walletName"
>
Name
</label>
<input
type=
"text"
class=
"form-control form-control-success"
formControlName=
"walletName"
id=
"walletName"
placeholder=
"Enter a wallet name."
>
<div
*
ngIf=
"formErrors.walletName"
class=
"
form-control-feedback
"
>
{{ formErrors.walletName }}
</div>
<div
*
ngIf=
"formErrors.walletName"
class=
"
text-danger mt-2
"
>
{{ formErrors.walletName }}
</div>
</div>
<div
class=
"form-group"
>
<label
class=
"col-12 row"
for=
"creationDate"
>
Creation Date (optional)
</label>
<material-datepicker
class=
"form-control"
[(
date
)]="
creationDate
"
></material-datepicker>
<material-datepicker
class=
"form-control
col-4
"
[(
date
)]="
creationDate
"
></material-datepicker>
</div>
<div
class=
"form-group"
>
<label
class=
"col-12 row"
for=
"walletMnemonic"
>
12 Secret Words
</label>
<input
type=
"text"
class=
"form-control form-control-success"
formControlName=
"walletMnemonic"
id=
"walletName"
placeholder=
"Enter your 12 secret words."
>
<div
*
ngIf=
"formErrors.walletMnemonic"
class=
"
form-control-feedback
"
>
{{ formErrors.walletMnemonic }}
</div>
<div
*
ngIf=
"formErrors.walletMnemonic"
class=
"
text-danger mt-2
"
>
{{ formErrors.walletMnemonic }}
</div>
</div>
<div
class=
"form-group"
>
<label
class=
"text-left"
for=
"walletPassword"
>
Password
</label>
<input
type=
"password"
class=
"form-control form-control-success"
formControlName=
"walletPassword"
id=
"walletPassword"
placeholder=
"Enter a password."
>
<div
*
ngIf=
"formErrors.walletPassword"
class=
"
form-control-feedback
"
>
{{ formErrors.walletPassword }}
</div>
<div
*
ngIf=
"formErrors.walletPassword"
class=
"
text-danger mt-2
"
>
{{ formErrors.walletPassword }}
</div>
</div>
<div
class=
"form-group"
>
<label
class=
"text-left"
for=
"walletNetwork"
>
Network
</label>
...
...
Breeze.UI/src/app/setup/setup.component.html
View file @
6692e4eb
...
...
@@ -4,15 +4,15 @@
<!--<p class="text-back text-left mb-5 col-6 row">
<button type="button" class="btn btn-link text-back" (click)="onBackClicked()">Back</button>
</p>-->
<p
class=
"text-back text-left mb-5
col-6
row"
><a
(
click
)="
onBackClicked
()"
>
Back
</a></p>
<p
class=
"text-back text-left mb-5
offset-3
row"
><a
(
click
)="
onBackClicked
()"
>
Back
</a></p>
<h3
class=
"display-5"
>
Welcome
</h3>
<p
class=
"lead"
>
<p
class=
"lead
mb-6
"
>
If you would like to create a new wallet, please click Create.
<br/>
When you have used Breeze before, you can click Restore to recover your wallet.
</p>
<div
class=
"row d-flex justify-content-center"
>
<button
type=
"button"
class=
"btn btn-darkgray btn-lg"
(
click
)="
onCreateClicked
()"
>
Create
</button>
<button
type=
"button"
class=
"btn btn-linkgray btn-lg"
(
click
)="
onRecoverClicked
()"
>
Restore
</button>
<button
type=
"button"
class=
"btn btn-darkgray btn-lg"
(
click
)="
onCreateClicked
()"
>
Create
</button>
</div>
</div>
<!-- /container-->
...
...
Breeze.UI/src/scss/_custom.scss
View file @
6692e4eb
...
...
@@ -8,9 +8,7 @@ a, button {&:hover {cursor: pointer !important;}}
code
{
color
:
$spacegray
!
important
;}
.
form-control
:
:-
webkit-input-placeholder
{
color
:
$input-color-placeholder
;
}
/* WebKit, Blink, Edge */
.
form-control
:
-
moz-placeholder
{
color
:
$input-color-placeholder
;
}
/* Mozilla Firefox 4 to 18 */
.
form-control
:
:-
moz-placeholder
{
color
:
$input-color-placeholder
;
}
/* Mozilla Firefox 19+ */
.
form-control
:
-
ms-input-placeholder
{
color
:
$input-color-placeholder
;
}
/* Internet Explorer 10-11 */
.
form-control
:
:-
ms-input-placeholder
{
color
:
$input-color-placeholder
;
}
/* Microsoft Edge */
// button
.twitter
{
...
...
@@ -30,6 +28,17 @@ code {color: $spacegray !important;}
}
}
// datepicker
.datepicker__input
{
border-color
:
transparent
!
important
;
padding
:
0
!
important
;
text-align
:
left
;
color
:
$input-color
!
important
;
width
:
100%
;
text-align
:
center
;
&
:
:-
webkit-input-placeholder
{
color
:
$input-color-placeholder
;
}
/* WebKit, Blink, Edge */
}
// container
#content
{
width
:
100%
;
...
...
Breeze.UI/src/styles.css
View file @
6692e4eb
...
...
@@ -61,6 +61,20 @@ code {
color
:
#fff
!important
;
}
.datepicker__input
{
border-color
:
transparent
!important
;
padding
:
0
!important
;
text-align
:
left
;
color
:
#99A4B4
!important
;
width
:
100%
;
text-align
:
center
;
/* WebKit, Blink, Edge */
}
.datepicker__input
::-webkit-input-placeholder
{
color
:
#d4d8df
;
}
#content
{
width
:
100%
;
position
:
relative
;
...
...
Breeze.UI/src/styles.css.map
View file @
6692e4eb
This source diff could not be displayed because it is too large. You can
view the blob
instead.
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