edit.thtml.svn-base

来自「j2me is based on j2mepolish, client & se」· SVN-BASE 代码 · 共 53 行

SVN-BASE
53
字号
<h2>Edit User</h2><p>All fields are required.</p><form action="" method="post" class="joey-form" /><div>    <label class="joey-label-large" for="UserUsername">User Name:</label>    <span><?=$this->data['User']['username']?></span></div><div>    <label class="joey-label-large" for="UserEmail">Email Address:</label>    <?=$html->input('User/email')?>    <?=$html->tagErrorMsg('User/email', isset($error_email) ?  $error_email : 'An email address is required.')?></div><div>    <label class="joey-label-large" for="UserPassword">Password:</label>    <?=$html->password('User/password')?>    <?=$html->tagErrorMsg('User/password', 'A password is required.')?></div><div>    <label class="joey-label-large" for="UserPassword">Confirm Password:</label>    <?=$html->password('User/confirmpassword')?>    <?=$html->tagErrorMsg('User/confirmpassword', 'Your passwords don\'t match.')?></div><div>    <label class="joey-label-large" for="UserPhonenumber">Phone number:</label>    <?=$html->input('User/phonenumber')?>    <?=$html->tagErrorMsg('User/phonenumber', 'A phone number is required.')?></div><div>    <label class="joey-label-large" for="PhoneName">What type of phone do you have?</label>    <?=$html->selectTag('Phone/name', $phones, $this->data['Phone']['id'])?>    <?=$html->tagErrorMsg('Phone/name', 'A phone name is required.')?></div><div>    <label class="joey-label-large" for="OperatorProvider">Who is your provider?</label>    <?=$html->selectTag('Operator/provider', $operators, $this->data['Operator']['id'])?>    <?=$html->tagErrorMsg('Operator/provider', 'A provider is required.')?></div><div class="button-box">    <?=$html->submit('Save Changes',array('class' => 'joey-submit')); ?></div></form>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?