标签:click lang png nav 姓名 blog title bsp sheet
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>{% block title%}父模板{% endblock %}</title> <script src="{{url_for(‘static‘,filename=‘js/base.js‘) }}" type="text/javascript"></script> <link href="{{ url_for(‘static‘ ,filename=‘css/base.css‘) }}" rel="stylesheet" type="text/css"> {% block head %} {% endblock %} </head> <body id="myBody"> <nav> <div class="container"> <a class="one" href="{{url_for(‘index‘)}}">首页 </a> <input type="submit" value="搜索"> <a class="login" href="{{url_for(‘denglu‘)}}">登录</a> <a class="register" href="{{url_for(‘zhuce‘)}}">注册</a> <img id="on_off" onclick="mySwitch()" src="../static/images/bulbon.gif"> </div> </nav> {% block main %} <footer> <div class="footer_box"> Copyright@ 2025 个人版权,版权所有 </div> </footer> {% endblock %}
{% extends‘base.html‘ %} {% block title %} 首页 {% endblock %} {% block head %} <link type="text/css" rel="stylesheet" href="{{ url_for(‘static‘,filename=‘css/index.css‘) }}"> <script src="{{ url_for(‘static‘,filename=‘js/index.js‘) }}"> </script> {% endblock %} {% block main %} </head> <body id="mybody"> <nav class="navbody"> <a href="http://www.jianshu.com/"></a> <input type="text" name="search"> <button type="submit">搜索</button> <a href="{{ url_for(‘index‘) }}">首页</a> <a href="{{ url_for(‘denglu‘) }}">登陆</a> <a href="{{ url_for(‘zhuce‘) }}">注册</a> <img id="myonoff" onclick="mySwitch()" src="http://www.runoob.com/images/pic_bulbon.gif" width="40"> </nav> { endblock %}
{% extends‘base.html‘ %} {% block title %}登录{% endblock %} {% block head %} <link href="../static/css/denglu.css" rel="stylesheet" type="text/css"> <script src="../static/js/denglu.js"></script> {% endblock %} {% block main %} <div class="box"> <h2>欢迎进入</h2> <h3>登录界面</h3> <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="myLogin()">登陆</button> </div> </div> {% endblock %}
{% extends ‘base.html‘ %} {% block title %}注册{% endblock %} {% block head %} <link href="../static/css/zhuce.css" rel="stylesheet" type="text/css"> <script src="../static/js/zhuce.js"></script> {% endblock %} {% block main %} <div class="box"> <h2>欢迎进入</h2> <h3>注册界面</h3> <div class="input_box"> 请输入账号 <input id="uname" type="text" placeholder="请输入你的姓名"> </div><br> <div class="input_box"> 请输入密码 <input id="upass" type="password" placeholder="请输入密码"></div><br> <div class="input_box"> 再输入密码 <input id="upass1" type="password" placeholder="请再次输入密码"></div><br> <div id="error_box"><br></div> <div class="input_box"> <button onclick="fnLogin()" >注册</button></div> </div> {% endblock %}
标签:click lang png nav 姓名 blog title bsp sheet
原文地址:http://www.cnblogs.com/095lqt/p/7803500.html