Skip to content
Next
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
Minds Frontend
Project
Project
Details
Activity
Releases
Dependency List
Cycle Analytics
Insights
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
868
Issues
868
List
Boards
Labels
Service Desk
Milestones
Merge Requests
45
Merge Requests
45
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
List
Container Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Minds
Minds Frontend
Commits
a7e02de0
Commit
a7e02de0
authored
1 hour ago
by
Ben Hayward
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
aethetic changes
parent
af03f3b3
feat/plus-tiers-578
1 merge request
!460
WIP: [Sprint/JollyJellyfish](feat) Plus tiers engine#578
Pipeline
#74979859
failed with stages
in 37 minutes and 5 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
8 deletions
+8
-8
payment-plan.component.html
src/app/modules/plus/plan/payment-plan.component.html
+3
-3
payment-plan.component.scss
src/app/modules/plus/plan/payment-plan.component.scss
+2
-2
subscription.component.html
src/app/modules/plus/subscription.component.html
+3
-3
No files found.
src/app/modules/plus/plan/payment-plan.component.html
View file @
a7e02de0
...
...
@@ -22,19 +22,19 @@
<h6
class=
"m-plus-plan__period-title"
>
Monthly
</h6>
<span
class=
"m-plus-plan__period-price"
><strong>
20 OffChain Tokens
</strong><input
[(
ngModel
)]="
tier
"
type=
"radio"
name=
"offchainMonthly"
[
value
]="
tiers
.
OFFCHAIN_MONTHLY
"
></span>
<span
class=
"m-m-plus-plan__period-price"
><em>
OnChain not available
</em></span>
<
span
class=
"m-m-plus-plan__period-price"
><strong>
5 USD
</strong></span
>
<
!-- <span class="m-m-plus-plan__period-price"><strong>5 USD</strong></span> --
>
</div>
<div
class=
"m-plus-plan__period-container"
>
<h6
class=
"m-plus-plan__period-title"
>
Annual
</h6>
<span
class=
"m-plus-plan__period-price"
><strong>
200 OffChain Tokens
</strong><input
[(
ngModel
)]="
tier
"
type=
"radio"
name=
"offchainYearly"
[
value
]="
tiers
.
OFFCHAIN_YEARLY
"
></span>
<span
class=
"m-plus-plan__period-price"
><strong>
40 OnChain Tokens
</strong><input
[(
ngModel
)]="
tier
"
type=
"radio"
name=
"onchainYearly"
[
value
]="
tiers
.
ONCHAIN_YEARLY
"
></span>
<
span
class=
"m-plus-plan__period-price"
><strong>
50 USD
</strong></span
>
<
!-- <span class="m-plus-plan__period-price"><strong>50 USD</strong></span> --
>
</div>
<div
class=
"m-plus-plan__period-container"
>
<h6
class=
"m-plus-plan__period-title"
>
Lifetime
</h6>
<span
class=
"m-plus-plan__period-price"
><strong>
5,000 OffChain Tokens
</strong><input
[(
ngModel
)]="
tier
"
type=
"radio"
name=
"offchainLife"
[
value
]="
tiers
.
OFFCHAIN_LIFETIME
"
></span>
<span
class=
"m-plus-plan__period-price"
><strong>
400 OnChain Tokens
</strong><input
[(
ngModel
)]="
tier
"
type=
"radio"
name=
"onchainLife"
[
value
]="
tiers
.
ONCHAIN_LIFETIME
"
></span>
<
span
class=
"m-plus-plan__period-price"
><strong>
500 USD
</strong></span
>
<
!-- <span class="m-plus-plan__period-price"><strong>500 USD</strong></span> --
>
</div>
</form>
</div>
...
...
This diff is collapsed.
Click to expand it.
src/app/modules/plus/plan/payment-plan.component.scss
View file @
a7e02de0
...
...
@@ -60,7 +60,7 @@
.m-plus-plan__period-container
{
padding
:
2
4
px
;
padding
:
2
2
px
;
display
:
flex
;
flex-direction
:
column
;
line-height
:
32px
;
...
...
@@ -93,7 +93,7 @@
input
{
align-self
:
center
;
margin-left
:
1
4
px
;
margin-left
:
1
8
px
;
width
:
16px
;
height
:
16px
;
@media
screen
and
(
max-width
:
$min-tablet
)
{
...
...
This diff is collapsed.
Click to expand it.
src/app/modules/plus/subscription.component.html
View file @
a7e02de0
<button
class=
"mdl-button mdl-button--colored mdl-color--green"
*
ngIf=
"user && !isPlus()"
(
click
)="
purchase
(
20
,
'
month
')"
[
hidden
]="
active
"
>
Upgrade - 20 Tokens/month
</button>
<button
class=
"mdl-button mdl-button--colored mdl-color--green"
*
ngIf=
"user && !isPlus() && false"
(
click
)="
purchase
(
200
,
'
year
')"
[
hidden
]="
active
"
>
Upgrade - 200 Tokens/year
</button>
<button
class=
"mdl-button mdl-button--colored mdl-color--green"
*
ngIf=
"user && !isPlus()"
(
click
)="
purchase
(
20
,
'
month
')"
[
hidden
]="
active
"
>
Purchase
</button>
<button
class=
"mdl-button mdl-button--colored mdl-color--green"
*
ngIf=
"user && !isPlus() && false"
(
click
)="
purchase
(
200
,
'
year
')"
[
hidden
]="
active
"
>
Purchase
</button>
<button
class=
"mdl-button mdl-button--colored mdl-color--green"
*
ngIf=
"user && isPlus()"
(
click
)="
cancel
()"
i18n=
"@@PLUS__MKT__CANCEL_ACTION"
>
Cancel Plus
</button>
<button
class=
"mdl-button mdl-button--colored mdl-color--green"
*
ngIf=
"!user"
routerLink=
"/login"
>
Upgrade - 200 Tokens/year
</button>
<button
class=
"mdl-button mdl-button--colored mdl-color--green"
*
ngIf=
"!user"
routerLink=
"/login"
>
Purchase
</button>
<div
class=
"m-plus--subscription mdl-card mdl-shadow--4dp"
*
ngIf=
"active"
>
...
...
This diff is collapsed.
Click to expand it.
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