标签:ati bug 平台 ref 密码 实现 ror def col
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title> {% block title %} {% endblock %} 首页</title> <link rel="stylesheet" type="text/css" href="{{ url_for(‘static‘, filename=‘css/base.css‘) }}"> <script src="{{ url_for(‘static‘,filename=‘js/base.js‘) }}"></script> {% block head %} {% endblock %} a </head> <body id="myBody"> <nav> <img id="myOnOff" onclick="mySwitch()" src="{{ url_for(‘static‘,filename=‘image/pic_bulboff.gif‘) }}" width="30px"> <a href="{{ url_for(‘base‘) }}">首页</a> <a href="{{ url_for(‘regist‘) }}">注册</a> <a href="{{ url_for("login")}}" >登录</a> </nav> {% block main %} {% endblock %} <div class="area"></div> </div> </body> </html>
login
{% extends‘base.html‘ %} {% block title %} 登录 {% endblock %} {% block head %} <link rel="stylesheet" type="text/css" href="../static/css/login.css"> <script src="../static/js/login.js"></script> {% endblock %} {% block main %} <body class="body"> <div class="box"> <h2 class="ziti">登录</h2> <div class="input_box"> <input id="uname" type="text" placeholder="请输入用户名"> </div> <div class="input_box"> <input id="upass" type="password" placeholder="请输入密码"> </div> <div id="error_box"><br></div> <div class="input_box"> <button onclick="fnLogin()">登录</button> </div> </div> {% endblock %} </body> </html>
regist
{% extends‘base.html‘ %} {% block title %} 注册 {% endblock %} {% block head %} <link rel="stylesheet" type="text/css" href="../static/css/login.css"> <script src="../static/js/login.js"></script> {% endblock %} {% block main %} <body class="body"> <div class="box"> <h2 class="ziti">注册</h2> <div class="input_box"> <input id="uname" type="text" placeholder="你的用户名"> </div> <div class="input_box"> <input id="upass" type="password" placeholder="设置密码"> </div> <div class="input_box"> <input id="upass1" type="password" placeholder="密码"> <div id="error_box"><br></div> <div class="input_box"> <button onclick="fnRegist()">注册</button> </div> </div> </div> {% endblock %} </body> </html>
from flask import Flask,render_template app = Flask(__name__) @app.route(‘/‘) def base(): return render_template(‘base.html‘) @app.route(‘/login/‘) def login(): return render_template(‘login.html‘) @app.route(‘/regist/‘) def regist(): return render_template(‘regist.html‘) if __name__ == ‘__main__‘: app.run(debug=True)
标签:ati bug 平台 ref 密码 实现 ror def col
原文地址:http://www.cnblogs.com/YWEIEN/p/7798181.html