mirror of
https://github.com/Karaka-Management/oms-Profile.git
synced 2026-01-11 15:28:40 +00:00
23 lines
931 B
PHP
23 lines
931 B
PHP
<?php declare(strict_types=1);
|
|
|
|
echo $this->getData('nav')->render();
|
|
?>
|
|
|
|
<div class="row">
|
|
<div class="col-xs-12 col-md-6">
|
|
<section class="box wf-100">
|
|
<header><h1><?= $this->getHtml('CreateProfile'); ?></h1></header>
|
|
|
|
<div class="inner">
|
|
<form id="fProfileCreate" method="PUT" action="<?= \phpOMS\Uri\UriFactory::build('{/api}profile?{?}&csrf={$CSRF}'); ?>">
|
|
<table class="layout wf-100" style="table-layout: fixed">
|
|
<tbody>
|
|
<tr><td><label for="iAccount"><?= $this->getHtml('Account') ?></label>
|
|
<tr><td><?= $this->getData('accGrpSelector')->render('iAccount', true); ?>
|
|
<tr><td><input type="submit" value="<?= $this->getHtml('Create', '0', '0'); ?>">
|
|
</table>
|
|
</form>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
</div>
|