aboutsummaryrefslogtreecommitdiffstats
path: root/template/yoga/admin/group_list.tpl
diff options
context:
space:
mode:
authorplegall <plg@piwigo.org>2006-04-05 21:01:05 +0000
committerplegall <plg@piwigo.org>2006-04-05 21:01:05 +0000
commite59772b8df1f8528d45bbc548110259f943352ee (patch)
tree92831c242932d957e2d573c0bcf2f6411e22f253 /template/yoga/admin/group_list.tpl
parent969ebbf4f120064ab864329c8daf3adc38cfc38a (diff)
bug fixed: replace obsolet tn_width and tn_height language keys by their new
equivalent. improvement: HTML properties forms rewritten to offer labelled Yes/No click on checkboxes. improvement: onblur onfocus attribute used on every HTML properties form. git-svn-id: http://piwigo.org/svn/trunk@1129 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'template/yoga/admin/group_list.tpl')
-rw-r--r--template/yoga/admin/group_list.tpl11
1 files changed, 9 insertions, 2 deletions
diff --git a/template/yoga/admin/group_list.tpl b/template/yoga/admin/group_list.tpl
index 389bc1071..7b7dd67eb 100644
--- a/template/yoga/admin/group_list.tpl
+++ b/template/yoga/admin/group_list.tpl
@@ -4,8 +4,15 @@
<form method="post" name="add_user" action="{F_ADD_ACTION}" class="properties">
<fieldset>
<legend>{lang:Add group}</legend>
- <label>{lang:Group name}</label><input type="text" name="groupname" maxlength="50" size="20" />
- <p><input type="submit" name="submit_add" value="{lang:Add}" {TAG_INPUT_ENABLED}/></p>
+
+ <span class="property">
+ <label for="groupname">{lang:Group name}</label>
+ </span>
+ <input type="text" id="groupname" name="groupname" maxlength="50" size="20" onfocus="this.className='focus';" onblur="this.className='nofocus';" />
+
+ <p>
+ <input type="submit" name="submit_add" value="{lang:Add}" {TAG_INPUT_ENABLED}/>
+ </p>
</fieldset>
</form>