Skip to content

Commit

Permalink
Updated form with firstname, middlename & surname fields. Removed nam…
Browse files Browse the repository at this point in the history
…e field.
  • Loading branch information
TBK0000 committed Dec 5, 2011
1 parent c953c04 commit 7bbdd9f
Showing 1 changed file with 19 additions and 3 deletions.
22 changes: 19 additions & 3 deletions administrator/components/com_users/models/forms/user.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,26 @@
<!-- $Id$ -->
<form>
<fieldset name="user_details">
<field name="name" type="text"
<field name="firstname" type="text"
class="inputbox"
description="COM_USERS_USER_FIELD_NAME_DESC"
label="COM_USERS_HEADING_NAME"
description="COM_USERS_USER_FIELD_FIRSTNAME_DESC"
label="COM_USERS_HEADING_FIRSTNAME_LABLE"
required="true"
size="30"
/>

<field name="middlename" type="text"
class="inputbox"
description="COM_USERS_USER_FIELD_MIDDLENAME_DESC"
label="COM_USERS_HEADING_MIDDLENAME_LABLE"
required="false"
size="30"
/>

<field name="surname" type="text"
class="inputbox"
description="COM_USERS_USER_FIELD_SURNAME_DESC"
label="COM_USERS_HEADING_SURNAME_LABLE"
required="true"
size="30"
/>
Expand Down

0 comments on commit 7bbdd9f

Please sign in to comment.