42 lines
1.4 KiB
PHP
42 lines
1.4 KiB
PHP
|
|
<?= $this->extend('layouts/form.php') ?>
|
||
|
|
|
||
|
|
<?= $this->section('content') ?>
|
||
|
|
<?php
|
||
|
|
$shorttext = '';
|
||
|
|
$texts = '';
|
||
|
|
if(isset($usertype)) { $data = $usertype[0]; }
|
||
|
|
if(isset($new_value)) { $data = $new_value; }
|
||
|
|
if(isset($data)) {
|
||
|
|
if(isset($data['userposid'])) { $userposid= $data['userposid']; }
|
||
|
|
$shorttext = $data['shorttext'];
|
||
|
|
$texts = $data['texts'];
|
||
|
|
}
|
||
|
|
?>
|
||
|
|
<div class="form-body">
|
||
|
|
<h3 class="card-title">User Position Editor</h3>
|
||
|
|
<hr>
|
||
|
|
<?php
|
||
|
|
if(isset($validation)) {
|
||
|
|
?>
|
||
|
|
<div class='alert alert-danger alert-dismissible'>
|
||
|
|
<?= $validation->listErrors(); ?>
|
||
|
|
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"> <span aria-hidden="true"></span> </button>
|
||
|
|
</div>
|
||
|
|
<?php
|
||
|
|
}
|
||
|
|
?>
|
||
|
|
<form method='POST'>
|
||
|
|
<input type='hidden' name='userposid' value='<?=$userposid;?>'/>
|
||
|
|
<div class="form-group row">
|
||
|
|
<label class="col-2 col-form-label">Short Text</label>
|
||
|
|
<div class="col-10"><input class="form-control" type="text" name='shorttext' value="<?=$shorttext;?>"></div>
|
||
|
|
</div>
|
||
|
|
<div class="form-group row">
|
||
|
|
<label class="col-2 col-form-label">Texts</label>
|
||
|
|
<div class="col-10"><input class="form-control" type="text" name='texts' value="<?=$texts;?>"></div>
|
||
|
|
</div>
|
||
|
|
<button type="button" class="btn btn-dark float-start" onclick="window.close()">Cancel</button>
|
||
|
|
<button type="submit" class="btn btn-success text-white float-end"> <i class="fa fa-check"></i> Submit</button>
|
||
|
|
</form>
|
||
|
|
</div>
|
||
|
|
<?= $this->endSection() ?>
|