<DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> </head> <body> <form action="__CONTROLLER__/check" method="post"> <if condition="$username neq null"> <input type="text" placeholder="用户名" value="{$username}"><br> <else /> <input type="text" placeholder="用户名"><br> </if> <input type="password" placeholder="密码"><br> <input type="text" placeholder="验证码"><img src="https://www.jb51.net/__CONTROLLER__/verifyImg"><br> <input type="checkbox"><label for="remember">记住我</label> <input type="submit" value="提交"> </form> </body> </html>
视图 个人中心 ucenter.html
<DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Documenttitle> </head> <body> <if condition="$session['username'] neq null"> <i>{$session.username},</i> <else /> <i>游客,</i> </if> 欢迎您<br> <a href="https://www.jb51.net/__CONTROLLER__/loginout">退出登录</a> </body> </html>
附:模块目录
补充:小编在这里推荐一款本站的php格式化美化的排版工具帮助大家在以后的PHP程序设计中进行代码排版:
更多关于thinkPHP相关内容感兴趣的读者可查看本站专题:《ThinkPHP入门教程》、《ThinkPHP常用方法总结》、《smarty模板入门基础教程》及《PHP模板技术总结》。