styling
This commit is contained in:
parent
c4ca77916c
commit
59fd259c1e
@ -1,16 +1,24 @@
|
||||
<h2>{{ $setting['name'] }}</h2>
|
||||
<div>
|
||||
<div class="d-none">
|
||||
@if (!empty($setting['name']))
|
||||
<h2>{{ $setting['name'] }}</h2>
|
||||
@endif
|
||||
|
||||
@if ($setting['description'])
|
||||
@if (!empty($setting['description']))
|
||||
<div class="well well-sm">
|
||||
{{ $setting['description'] }}
|
||||
</div>
|
||||
@endif
|
||||
@endif
|
||||
</div>
|
||||
<br>
|
||||
|
||||
<div class="buttons">
|
||||
<div class="float-right">
|
||||
<div class="buttons">
|
||||
<div class="pull-right">
|
||||
<input type="button" value="{{ trans('offline-payments::general.confirm') }}" id="button-confirm" class="btn btn-success" data-loading-text="{{ trans('offline-payments::general.loading') }}" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script type="text/javascript"><!--
|
||||
$('#button-confirm').on('click', function() {
|
||||
$.ajax({
|
||||
@ -37,4 +45,4 @@
|
||||
}
|
||||
});
|
||||
});
|
||||
//--></script>
|
||||
//--></script>
|
||||
|
@ -1,14 +1,21 @@
|
||||
<div>
|
||||
<div class="d-none">
|
||||
@if (!empty($setting['name']))
|
||||
<h2>{{ $setting['name'] }}</h2>
|
||||
@endif
|
||||
|
||||
@if($setting['mode'] == 'sandbox')
|
||||
@if ($setting['mode'] == 'sandbox')
|
||||
<div class="alert alert-danger"><i class="fa fa-exclamation-circle"></i> {{ trans('paypal-standard::general.test_mode') }}</div>
|
||||
@endif
|
||||
|
||||
<div class="well well-sm">
|
||||
{{ trans('paypal-standard::general.description') }}
|
||||
</div>
|
||||
</div>
|
||||
<br>
|
||||
|
||||
<div class="buttons">
|
||||
<div class="pull-right">
|
||||
<form action="{{ $setting['action'] }}" method="post">
|
||||
<input type="hidden" name="cmd" value="_cart" />
|
||||
<input type="hidden" name="upload" value="1" />
|
||||
@ -39,10 +46,8 @@
|
||||
<input type="hidden" name="custom" value="{{ $invoice->id }}" />
|
||||
<input type="hidden" name="bn" value="Akaunting_2.0_WPS" />
|
||||
|
||||
<div class="buttons">
|
||||
<div class="float-right">
|
||||
<input type="submit" value="{{ trans('general.confirm') }}" class="btn btn-success" />
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
Loading…
x
Reference in New Issue
Block a user