mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-11 23:29:08 -04:00
- fixed the height of the submit buttons to match the input box - changed the cancel links into cancel buttons - added the hover effect to the buttons when used in in_place_edit (e.g. admin/tags)
22 lines
747 B
PHP
22 lines
747 B
PHP
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
|
<?= form::open($action, array("method" => "post", "id" => "g-in-place-edit-form", "class" => "g-short-form")) ?>
|
|
<?= access::csrf_form_field() ?>
|
|
<ul>
|
|
<li<? if (!empty($errors["input"])): ?> class="g-error"<? endif ?>>
|
|
<?= form::input("input", $form["input"], " class=\"textbox\"") ?>
|
|
</li>
|
|
<li>
|
|
<?= form::submit(array("class" => "submit ui-state-default"), t("Save")) ?>
|
|
</li>
|
|
<li><button class="g-cancel ui-state-default ui-corner-all"><?= t("Cancel") ?></button></li>
|
|
<? if (!empty($errors["input"])): ?>
|
|
<li>
|
|
<p id="g-in-place-edit-message" class="g-error"><?= $errors["input"] ?></p>
|
|
</li>
|
|
<? endif ?>
|
|
</ul>
|
|
</form>
|
|
|
|
|
|
|