storj/web/marketing/pages/refOffers.html
Egon Elbre fdddaa2a47 Fix marketingweb code (#2177)
* set to only listen on 127.0.0.1, move static files to same location, better template handling

* handle error

* fix path in storj-sim

* revert template handling changes

* code shouldn't panic on invalid tempalte

* do not rewrite once writing has started

* write correct error code

* use filepath for path handling

* revert change

* fix

* fix mod tidy

* use correct error code for not found, avoid infinite loop on failure
2019-06-12 09:42:39 -04:00

60 lines
1.8 KiB
HTML

{{define "refOffers"}}
<table class="w-100 mt-5 mb-5 rounded table table-light table-responsive">
<thead>
<tr>
<th>Name</th>
<th>Give Credit</th>
<th>Get Credit</th>
<th>Referrals Used</th>
<th>Redeemable Capacity</th>
<th>Created</th>
<th>Expiration</th>
<th>Status</th>
</tr>
</thead>
<tbody>
<th class="text-dark m-2"><p>CURRENT&nbsp;OFFER</p></th>
<tr>
<td>May Referral</td>
<td>$50</td>
<td>$50</td>
<td>48</td>
<td>200</td>
<td>05/01/19</td>
<td>06/01/19</td>
<th><img class="toggler" src="/static/img/on.jpg" height="50" width="50"></th>
</tr>
<th class="text-dark m-2"><p>OTHER&nbsp;OFFERS</p></th>
<tr>
<td>Default Offer</td>
<td>$20</td>
<td>$20</td>
<td>30</td>
<td>N/A</td>
<td>05/18/19</td>
<td>N/A</td>
<th><img class="toggler" src="/static/img/off.jpg" height="50" width="50"></th>
</tr>
<tr>
<td>June Referral</td>
<td>$50</td>
<td>$50</td>
<td>0</td>
<td>200</td>
<td>05/18/19</td>
<td>06/18/2019</td>
<th><img class="toggler" src="/static/img/off.jpg" height="50" width="50"></th>
</tr>
<tr>
<td>June Referral</td>
<td>$50</td>
<td>$50</td>
<td>0</td>
<td>200</td>
<td>05/18/19</td>
<td>06/18/2019</td>
<th><img class="toggler" src="/static/img/off.jpg" height="50" width="50"></th>
</tr>
</tbody>
</table>
{{end}}