diff options
Diffstat (limited to 'apps/contacts/templates/part.addcardform.php')
-rw-r--r-- | apps/contacts/templates/part.addcardform.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/contacts/templates/part.addcardform.php b/apps/contacts/templates/part.addcardform.php index 94a59fe097c..e87c64507dc 100644 --- a/apps/contacts/templates/part.addcardform.php +++ b/apps/contacts/templates/part.addcardform.php @@ -2,12 +2,14 @@ <?php if(count($_['addressbooks'])==1): ?> <input type="hidden" name="id" value="<?php echo $_['addressbooks'][0]['id']; ?>"> <?php else: ?> + <label for="id"><?php echo $l->t('Group'); ?></label> <select name="id" size="1"> <?php foreach($_['addressbooks'] as $addressbook): ?> <option value="<?php echo $addressbook['id']; ?>"><?php echo $addressbook['displayname']; ?></option> <?php endforeach; ?> </select> <?php endif; ?> + <label for="fn"><?php echo $l->t('Name'); ?></label> <input type="text" name="fn" value=""><br> - <input type="submit"> + <input type="submit" name="submit" value="<?php echo $l->t('Create Contact'); ?>"> </form> |