64 lines
2.6 KiB
Twig
64 lines
2.6 KiB
Twig
<div class="modal-dialog">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
|
<h4 class="modal-title"><i class="fa fa-cog"></i> {{ heading_title }}</h4>
|
|
</div>
|
|
<div class="modal-body">
|
|
<div class="alert alert-info"><i class="fa fa-info-circle"></i> {{ text_signup }}</div>
|
|
<div class="form-group">
|
|
<label for="input-username">{{ entry_username }}</label>
|
|
<input type="text" name="opencart_username" value="" placeholder="{{ entry_username }}" id="input-username" class="form-control" />
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="input-secret">{{ entry_secret }}</label>
|
|
<textarea name="opencart_secret" placeholder="{{ entry_secret }}" rows="8" id="input-secret" class="form-control"></textarea>
|
|
</div>
|
|
<div class="form-group text-right">
|
|
<button type="button" id="button-save" data-loading-text="{{ text_loading }}" class="btn btn-primary">{{ button_save }}</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script type="text/javascript"><!--
|
|
$('#button-save').on('click', function(e) {
|
|
$.ajax({
|
|
url: 'index.php?route=marketplace/api/save&user_token={{ user_token }}',
|
|
type: 'post',
|
|
dataType: 'json',
|
|
data: $('#modal-opencart :input'),
|
|
beforeSend: function() {
|
|
$('#button-save').button('loading');
|
|
},
|
|
complete: function() {
|
|
$('#button-save').button('reset');
|
|
},
|
|
success: function(json) {
|
|
$('.alert-dismissible, .text-danger').remove();
|
|
|
|
if (json['error']) {
|
|
if (json['error']['warning']) {
|
|
$('#modal-opencart .modal-body').prepend('<div class="alert alert-danger alert-dismissible"><i class="fa fa-exclamation-circle"></i> ' + json['error']['warning'] + ' <button type="button" class="close" data-dismiss="alert">×</button></div>');
|
|
}
|
|
|
|
if (json['error']['username']) {
|
|
$('input[name="username"]').after('<div class="text-danger">' + json['error']['username'] + '</div>');
|
|
}
|
|
|
|
if (json['error']['secret']) {
|
|
$('textarea[name="secret"]').after('<div class="text-danger">' + json['error']['secret'] + '</div>');
|
|
}
|
|
}
|
|
|
|
if (json['success']) {
|
|
$('#modal-opencart .modal-body').prepend('<div class="alert alert-success alert-dismissible"><i class="fa fa-check-circle"></i> ' + json['success'] + ' <button type="button" class="close" data-dismiss="alert">×</button></div>');
|
|
|
|
window.location.reload();
|
|
}
|
|
},
|
|
error: function(xhr, ajaxOptions, thrownError) {
|
|
alert(thrownError + "\r\n" + xhr.statusText + "\r\n" + xhr.responseText);
|
|
}
|
|
});
|
|
});
|
|
//--></script> |