56 lines
1.6 KiB
HTML
56 lines
1.6 KiB
HTML
<?= Form::open(['id' => 'createForm']) ?>
|
|
|
|
<div class="modal-header">
|
|
<button type="button" class="close" data-dismiss="popup">×</button>
|
|
<h4 class="modal-title"><?= e(trans('rainlab.translate::lang.locale.create_title')) ?></h4>
|
|
</div>
|
|
|
|
<?php if (!$this->fatalError): ?>
|
|
|
|
<div class="modal-body">
|
|
<?= $this->formRender() ?>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button
|
|
type="submit"
|
|
data-request="onCreate"
|
|
data-request-data="redirect:0"
|
|
data-hotkey="ctrl+s, cmd+s"
|
|
data-popup-load-indicator
|
|
class="btn btn-primary">
|
|
<?= e(trans('backend::lang.form.create')) ?>
|
|
</button>
|
|
|
|
<button
|
|
type="button"
|
|
class="btn btn-default"
|
|
data-dismiss="popup">
|
|
<?= e(trans('backend::lang.form.cancel')) ?>
|
|
</button>
|
|
</div>
|
|
|
|
<?php else: ?>
|
|
|
|
<div class="modal-body">
|
|
<p class="flash-message static error"><?= e(trans($this->fatalError)) ?></p>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button
|
|
type="button"
|
|
class="btn btn-default"
|
|
data-dismiss="popup">
|
|
<?= e(trans('backend::lang.form.close')) ?>
|
|
</button>
|
|
</div>
|
|
|
|
<?php endif ?>
|
|
|
|
<script>
|
|
setTimeout(
|
|
function(){ $('#createForm input.form-control:first').focus() },
|
|
310
|
|
)
|
|
</script>
|
|
|
|
<?= Form::close() ?>
|