14 lines
503 B
PHP
14 lines
503 B
PHP
|
|
<div class="page-header">
|
||
|
|
<h2><?= t('Rename workspace') ?></h2>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<form method="post" action="<?= $this->url->href('WorkspaceOrgController', 'update', array('plugin' => 'WorkspaceOrg')) ?>" autocomplete="off">
|
||
|
|
<?= $this->form->csrf() ?>
|
||
|
|
<?= $this->form->hidden('old', $values) ?>
|
||
|
|
|
||
|
|
<?= $this->form->label(t('Name'), 'name') ?>
|
||
|
|
<?= $this->form->text('name', $values, $errors, array('autofocus', 'required', 'maxlength="50"')) ?>
|
||
|
|
|
||
|
|
<?= $this->modal->submitButtons() ?>
|
||
|
|
</form>
|