Skip to content
GitLab
Menu
Why GitLab
Pricing
Contact Sales
Explore
Why GitLab
Pricing
Contact Sales
Explore
Sign in
Get free trial
Primary navigation
Search or go to…
Project
Minds Frontend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Privacy statement
Keyboard shortcuts
?
What's new
6
Snippets
Groups
Projects
Show more breadcrumbs
Minds
Minds Frontend
Merge requests
!282
Epic/onchain improvements
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Epic/onchain improvements
epic/onchainImprovements
into
master
Overview
0
Commits
5
Pipelines
4
Changes
11
Merged
Mark Harding
requested to merge
epic/onchainImprovements
into
master
5 years ago
Overview
0
Commits
5
Pipelines
4
Changes
7
Expand
0
0
Merge request reports
Compare
version 2
version 3
639a433e
5 years ago
version 2
2a627f99
5 years ago
version 1
8d2c3644
5 years ago
master (base)
and
version 3
latest version
d3c3b508
5 commits,
5 years ago
version 3
639a433e
3 commits,
5 years ago
version 2
2a627f99
2 commits,
5 years ago
version 1
8d2c3644
2 commits,
5 years ago
Show latest version
7 files
+
174
−
7
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
7
Search (e.g. *.vue) (Ctrl+P)
src/app/modules/blockchain/marketing/eth-modal.component.html
0 → 100644
+
43
−
0
Options
<m-modal
open=
"true"
(closed)=
"close.next(true)"
>
<div
class=
"m-blockchain--marketing--modal"
>
<h2>
Buy ETH
</h2>
<div
class=
"m-layout__row m-blockchainEthModal__form"
>
<div
class=
"m-layout__cell"
>
<input
type=
"number"
class=
"m-input"
[(ngModel)]=
"usd"
max=
"50"
/>
<label>
USD
</label>
</div>
<div
class=
"m-layout__cell m-blockchainEthModal__eq"
>
<span>
=
</span>
</div>
<div
class=
"m-layout__cell"
>
<input
type=
"number"
class=
"m-input"
[ngModel]=
"eth"
(ngModelChange)=
"setEth($event)"
/>
<label>
ETH
</label>
</div>
</div>
<p>
ETH is estimated at 1 ETH =
<b>
$
</b>
{{ ethRate }}. The checkout process will produce a more accurate ETH value.
</p>
<p
class=
"m-error mdl-color-text--red"
*ngIf=
"usd > 50"
>
You can not purchase more than $50 worth of ETH
</p>
<button
class=
"m-btn m-btn--slim m-btn--action"
(click)=
"buy()"
>
Buy with SendWyre
</button>
</div>
</m-modal>
Loading