30 lines
1.2 KiB
HTML
30 lines
1.2 KiB
HTML
|
<!-- Copyright (C) 2019 Storj Labs, Inc.
|
||
|
See LICENSE for copying information. -->
|
||
|
|
||
|
{{define "stopReferralOffer"}}
|
||
|
<div class="modal fade stop-referral-offer-modal mt-5" tabindex="-1" role="dialog" aria-labelledby="confirm" aria-hidden="true">
|
||
|
<div class="modal-dialog modal-lg">
|
||
|
<div class="modal-content">
|
||
|
<div class="row d-flex justify-content-between">
|
||
|
<img class="mt-3 ml-5" src="/static/img/warning.png" height="30" width="30"/>
|
||
|
<p class="mt-3">Replace
|
||
|
<strong>{{.ReferralOffers.Active.Name}}</strong> with
|
||
|
<strong>{{.ReferralOffers.Default.Name}}</strong> ?
|
||
|
</p>
|
||
|
<div class="mt-2 mb-2 d-flex">
|
||
|
<a href="/">
|
||
|
<button class="btn btn-outline-secondary mr-1">
|
||
|
Cancel
|
||
|
</button>
|
||
|
</a>
|
||
|
<form method="POST" action="/stop/{{.ReferralOffers.Active.ID}}">
|
||
|
<button class="btn btn-primary mr-4" type="submit">
|
||
|
Yes
|
||
|
</button>
|
||
|
</form>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
{{end}}
|