PictCode登録 - 情報入力

PictCodeに新規登録を行います。登録の際にはご両親の付き添い、または管理のもと、お間違いのないよう入力を行ってください。

Form->create('User',array( 'div' => false, 'type'=>'post', 'action'=>'signup' 'inputDefaults' => array( 'before' => '
', 'between' => '
', 'after' => '
', 'wrapInput' => false, ), 'class' => 'well')); ?>
'; echo $this->Form->text('login_id', array( 'type' => 'text', 'placeholder'=>'ニックネーム' )); echo '
'; echo $this->Form->text('password', array( 'placeholder'=>'パスワード', 'maxlength' => '50', 'type' => 'password' )); echo '
'; echo $this->Form->text('password_confirm', array( 'placeholder'=>'パスワード(確認用)', 'maxlength' => '50', 'type' => 'password' )); echo '
'; echo $this->Form->text( 'username', array( 'maxlength' => '255', 'type' => 'email')); $this->Form->input('user_flg',1); $this->Form->input('status',1); ?>
Form->end(__('Submit')); ?> Form->end('Register'); ?>