storj/web/marketing/pages/home.html
Faris Huskovic 7795ba8169
update UI to reflect final mockups (#2175)
* update UI to reflect final mockups

* fix line-height unit and remove important from selectors

* update file names and ids for clarity

* shorten 'label' in ids

* correct file-naming conventions

* add copyright to files

* check if break in imports is causing lint error

* resolve lint

* tidy go mod

* fix shorthands
2019-06-17 21:57:04 -04:00

19 lines
827 B
HTML

<!-- Copyright (C) 2019 Storj Labs, Inc.
See LICENSE for copying information. -->
{{define "main"}}
<div class="container">
<div class="row mt-4 mb-4 d-flex justify-content-between">
<h3 class="mt-4">Referral Credit Offers</h3>
<button type="button" class="btn btn-primary mt-4" data-toggle="modal" data-target="#referral-offers-modal">+ Create Referral Credit</button>
</div>
{{template "referralOffers" .}}
{{template "referralOffersModal" .}}
<div class="row mt-4 mb-4 d-flex justify-content-between">
<h3 class="mt-4">Free Credit Offers</h3>
<button type="button" class="btn btn-primary mt-4" data-toggle="modal" data-target="#free-offers-modal">+ Create Free Credit</button>
</div>
{{template "freeOffers" .}}
{{template "freeOffersModal" .}}
</div>
{{end}}