15 lines
484 B
PHP
15 lines
484 B
PHP
<form method="post" action="groups.php">
|
|
<input type="hidden" name="actionID" value="addform" />
|
|
<?php Horde_Util::pformInput() ?>
|
|
|
|
<h1 class="header">
|
|
<?php echo Horde_Themes_Image::tag('group.png') ?> <?php echo _("Add a group") ?>
|
|
</h1>
|
|
|
|
<p class="horde-content">
|
|
<label for="name" class="hidden"><?php echo _("Group name") ?></label>
|
|
<input type="text" id="name" name="name" />
|
|
<input type="submit" class="horde-default" value="<?php echo _("Add") ?>" />
|
|
</p>
|
|
</form>
|