27 lines
1.1 KiB
HTML
27 lines
1.1 KiB
HTML
<!-- Copyright (C) 2019 Storj Labs, Inc.
|
|
See LICENSE for copying information. -->
|
|
|
|
{{define "stopPartnerOffer"}}
|
|
<div class="modal fade stop-partner-offer-modal-{{.Name}} 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="{{BaseURL}}/static/img/warning.png" height="30" width="30" alt="Warning"/>
|
|
<p class="mt-3">Are you sure you want to discontinue this offer ?</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/{{.PartnerOffers.Active.ID}}">
|
|
<button class="btn btn-primary mr-4" type="submit">
|
|
Yes
|
|
</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{end}} |