标签:user 服务 管理 title highlight class template 发布会 input
需求:开发一个用户登录功能
首先从前端页面开始,打开.../sign/templates/index.html,开发一个表单
<html> <head> <title>Django Page</title> </head> <body> <h1>发布会管理</h1> <form> <input name="username" type="text" placeholder="请输入用户名" ><br> <input name="password" type="password" placeholder="请输入密码"><br> <button id="btn" type="submit">登录</button> </form> </body> </html>
启动Django服务,访问:http://127.0.0.1:8000/index/ 如图所示
标签:user 服务 管理 title highlight class template 发布会 input
原文地址:http://www.cnblogs.com/lingzeng86/p/7078654.html