• python编写简单的html登陆页面(1)


    1  html 打开调式效果如下

    2  用python后台编写

    # coding:utf-8
    # 从同一个位置导入多个工具,
    # 这些工具之间可以用逗号隔开,同时导入
    # render_template渲染母版
    from flask import Flask,render_template

    app=Flask(__name__)
    # 装饰器,路由用来封装链接,同时返回数据
    @app.route('/index')
    def index_xxx():
    # 导入html
    # 需要在桌面建立一个templates文件夹,
    # 将html放到这个文件夹
    return render_template('home1.html')
    # 在函数中只要导入return,return后面的代码就不执行了
    return 'python!!'
    @app.route('/login')
    def login():
    # 导入html
    # return render_template('home.html')
    # 在函数中只要导入return,return后面的代码就不执行了
    return 'python!!'

    app.debug=True
    # 跑服务器
    app.run()
    # 若果是绝对路径,建立文件夹templates,
    # 因为默认的就是这一个文件夹

     3..而且还要利用VS Code编写前台展现的基本页面

    <body>
    <div>欢迎来到Jaoany的博客!</div>
     
    <!--action="/commit"里面是要访问登陆页面的链接-->
    <form action="/commit">
    <!--<div>html是前端</div>-->
    <input type="text"name="username" placeholder="请输入用户名:">
    <input type="password" name="psw" placeholder="请输入密码:">
    <input type="submit" value="登陆">

    </form>
     
    </body>
     
    4  编写后台和前台的环境
    Subline Text 2是编写后台的,VS Code是编写前台的

    本文来自博客园,作者:Jaoany,转载请注明原文链接:https://www.cnblogs.com/fanglijiao/p/6973366.html

  • 相关阅读:
    vue vue-canvas-poster 生成海报
    vue 移动端拖曳指令
    小程序如何调起H5页面的支付
    vue H5微信支付代码
    java8的新特性
    java前端知识点整理
    java基础知识点整理
    ArcGis中地理数据库(sde)中概念及常见函数
    使用Arcgis时,在sde空间库常用的相关函数
    CentOS7虚拟机的网络模式-桥接模式配置
  • 原文地址:https://www.cnblogs.com/fanglijiao/p/6973366.html
Copyright © 2020-2023  润新知