mirror of
https://github.com/Karaka-Management/oms-Admin.git
synced 2026-01-28 20:48:41 +00:00
fix autocomplete
This commit is contained in:
parent
5ba6f9121e
commit
73b7aa57b4
|
|
@ -32,7 +32,7 @@ echo $this->getData('nav')->render(); ?>
|
|||
<option value="<?= $this->printHtml(\phpOMS\Account\GroupStatus::INACTIVE); ?>"><?= $this->getHtml('Inactive'); ?>
|
||||
</select>
|
||||
<tr><td><label for="iGname"><?= $this->getHtml('Name'); ?></label>
|
||||
<tr><td><input id="iGname" name="name" type="text" spellcheck="false" autocomplete="false" placeholder=" Guest" required>
|
||||
<tr><td><input id="iGname" name="name" type="text" spellcheck="false" autocomplete="off" placeholder=" Guest" required>
|
||||
<tr><td><?= $this->getData('editor')->render('group-editor'); ?>
|
||||
<tr><td><?= $this->getData('editor')->getData('text')->render('group-editor', 'description', 'fGroupCreate'); ?>
|
||||
</table>
|
||||
|
|
|
|||
|
|
@ -68,7 +68,7 @@ echo $this->getData('nav')->render(); ?>
|
|||
<label for="iGid"><?= $this->getHtml('ID', '0', '0'); ?></label>
|
||||
<input id="iGid" name="id" type="text" value="<?= $this->printHtml($group->getId()); ?>" disabled>
|
||||
<label for="iGname"><?= $this->getHtml('Name'); ?></label>
|
||||
<input id="iGname" name="name" type="text" spellcheck="false" autocomplete="false" placeholder=" Guest" value="<?= $this->printHtml($group->getName()); ?>">
|
||||
<input id="iGname" name="name" type="text" spellcheck="false" autocomplete="off" placeholder=" Guest" value="<?= $this->printHtml($group->getName()); ?>">
|
||||
<label for="iGstatus"><?= $this->getHtml('Status'); ?></label>
|
||||
<select id="iGstatus" name="status">
|
||||
<?php $status = \phpOMS\Account\GroupStatus::getConstants(); foreach ($status as $stat) : ?>
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user