1234567891011121314151617181920212223242526 |
- <?php
- $title = '修改昵称';
- $view
- ->import('inc/head')
- ->set('title', $title)
- ->set('name', 'password')
- ->fetch('header span', $title)
- ->fetch('.back@href', '<{Dever::url("user/update", "main")}>')
- ->fetch(array('input@id', 0), 'username')
- ->fetch(array('input@name', 0), 'username')
- ->fetch(array('input@value', 0), '<{Dever::load("task/user.one#username")}>')
- ->fetch(array('input@dever-error', 0), '请填写昵称')
- ->fetch('.button@class', 'button')
- ->fetch('.button@type', 'button')
- ->fetch('.button@id', 'edit')
- ->import('inc/foot')
- ->display();
|