package
TestApp::Form::Resource::Artist;
has
'+item_class'
=> (
default
=>
'Resource::Artist'
);
has_field
'name'
=> (
type
=>
'Text'
,
required
=> 1,
size
=> 40,
);
has_field
'password'
=> (
type
=>
'Password'
,
required
=> 1,
size
=> 40,
inactive
=> 1,
# we will activate this field with 'activate_fields_create'
);
has_field
'password_repeat'
=> (
type
=>
'PasswordConf'
,
required
=> 1,
size
=> 40,
inactive
=> 1,
# we will activate this field with 'activate_fields_create'
noupdate
=> 1,
);
has_field
'submit'
=> (
type
=>
'Submit'
,
value
=>
'Submit'
);
no
HTML::FormHandler::Moose;
1;