|
|
|
<!-- Extend area where template is defined -->
|
|
|
|
<?= $this->extend('templates/adminlte/generalcontent') ?>
|
|
|
|
<!-- .Extend -->
|
|
|
|
|
|
|
|
<!-- Title of the page -->
|
|
|
|
<?= $this->section('title') ?>User Maintenance<?= $this->endSection() ?>
|
|
|
|
<!-- .Title -->
|
|
|
|
|
|
|
|
<!-- CSS of the page -->
|
|
|
|
<?= $this->section('css') ?>
|
|
|
|
<?= $this->endSection() ?>
|
|
|
|
<!-- .CSS -->
|
|
|
|
|
|
|
|
<!-- body attribute - class definition -->
|
|
|
|
<?= $this->section('bodyclass') ?>sidebar-mini<?= $this->endSection() ?>
|
|
|
|
<!-- .body attribute -->
|
|
|
|
|
|
|
|
<!-- Container title -->
|
|
|
|
<?= $this->section('containertitle') ?>New User<?= $this->endSection() ?>
|
|
|
|
<!-- .Container title -->
|
|
|
|
|
|
|
|
<!-- Active breadcrumb -->
|
|
|
|
<?= $this->section('breadcrumbs') ?>
|
|
|
|
<li class="breadcrumb-item"><a href="/payroll/paytrans"><a href="<?= base_url('/adminuser') ?>">User Maintenance</a></li>
|
|
|
|
<li class="breadcrumb-item active">New User</li>
|
|
|
|
<?= $this->endSection() ?>
|
|
|
|
<!-- .Active breadcrumb -->
|
|
|
|
|
|
|
|
<!-- Main content -->
|
|
|
|
<?= $this->section('main') ?>
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-12">
|
|
|
|
<div class="card">
|
|
|
|
<form action="<?= url_to('adminuser/adduser') ?>" method="post">
|
|
|
|
<div class="card-header">
|
|
|
|
<h3 class="card-title">Create New User</h3>
|
|
|
|
</div>
|
|
|
|
<div class="card-body">
|
|
|
|
<?= csrf_field() ?>
|
|
|
|
<!-- Email -->
|
|
|
|
<div class="input-group mb-3">
|
|
|
|
<input type="email" class="form-control" id="floatingEmailInput" name="email" inputmode="email" autocomplete="email" placeholder="<?= lang('Auth.email') ?>" value="<?= old('email') ?>" required>
|
|
|
|
<div class="input-group-append">
|
|
|
|
<div class="input-group-text">
|
|
|
|
<span class="fas fa-envelope"></span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- employee_id -->
|
|
|
|
<div class="input-group mb-3">
|
|
|
|
<input type="text" class="form-control" id="floatingEmployeeIDInput" name="employee_id" inputmode="text" autocomplete="employee_id" placeholder="Emloyee ID" value="<?= old('employee_id') ?>" required>
|
|
|
|
<div class="input-group-append">
|
|
|
|
<div class="input-group-text">
|
|
|
|
<span class="fas fa-id-card"></span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- display_name -->
|
|
|
|
<div class="input-group mb-3">
|
|
|
|
<input type="text" class="form-control" id="floatingDisplayNameInput" name="display_name" inputmode="text" autocomplete="display_name" placeholder="Display Name" value="<?= old('display_name') ?>" required>
|
|
|
|
<div class="input-group-append">
|
|
|
|
<div class="input-group-text">
|
|
|
|
<span class="fas fa-id-card"></span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- Username -->
|
|
|
|
<div class="input-group mb-3">
|
|
|
|
<input type="text" class="form-control" id="floatingUsernameInput" name="username" inputmode="text" autocomplete="username" placeholder="<?= lang('Auth.username') ?>" value="<?= old('username') ?>" required>
|
|
|
|
<div class="input-group-append">
|
|
|
|
<div class="input-group-text">
|
|
|
|
<span class="fas fa-user"></span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Password -->
|
|
|
|
<div class="input-group mb-3">
|
|
|
|
<input type="password" class="form-control" id="floatingPasswordInput" name="password" inputmode="text" autocomplete="new-password" placeholder="<?= lang('Auth.password') ?>" required>
|
|
|
|
<div class="input-group-append">
|
|
|
|
<div class="input-group-text">
|
|
|
|
<span class="fas fa-lock"></span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- Password (Again) -->
|
|
|
|
<div class="input-group mb-3">
|
|
|
|
<input type="password" class="form-control" id="floatingPasswordConfirmInput" name="password_confirm" inputmode="text" autocomplete="new-password" placeholder="<?= lang('Auth.passwordConfirm') ?>" required>
|
|
|
|
<div class="input-group-append">
|
|
|
|
<div class="input-group-text">
|
|
|
|
<span class="fas fa-lock"></span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="card-footer">
|
|
|
|
<button type="submit" class="btn btn-primary">Submit</button>
|
|
|
|
<button type="reset" class="btn btn-default">Reset</button>
|
|
|
|
<a href="<?= base_url('/adminuser') ?>" class="btn btn-default">Cancel</a>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<?= $this->endSection() ?>
|
|
|
|
<!-- .Main content -->
|
|
|
|
|
|
|
|
<!-- Javascript -->
|
|
|
|
|
|
|
|
<?= $this->section('js') ?>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
$(document).ready(function() {
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<?= $this->endSection() ?>
|
|
|
|
|
|
|
|
<!-- .Javascript -->
|