操作方法
新建一个html文件,写上html的头部。
写上form表单的外壳。<form></form>
为form这个标签添加属性。<form method="post" action="{:url('index/user/add1')}">
开始写第一个输入框,昵称:<input type="text" name="username" />
写第二个输入框。邮箱:<input type="text" name="email" />
写第三个输入框。电话号码:<input type="text" name="tel"/>
最后写提交框。<input type="submit" value="提交" />