Merge branch 'main' of https://github.com/666ghj/Weibo_PublicOpinion_AnalysisSystem
Showing
2 changed files
with
83 additions
and
0 deletions
| 1 | +{% extends 'base_login.html' %} |
| 1 | +<!doctype html> | ||
| 2 | +<html lang="en"> | ||
| 3 | + <head> | ||
| 4 | + <meta charset="utf-8"> | ||
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | ||
| 6 | + <title>{% block title %} | ||
| 7 | + 登录 | ||
| 8 | + {% endblock %}</title> | ||
| 9 | + <link rel="stylesheet" href="/static/css/backend-plugin.min.css"> | ||
| 10 | + <link rel="stylesheet" href="/static/css/backend.css"> | ||
| 11 | + <meta name="referrer" content="no-referrer" /> | ||
| 12 | + </head> | ||
| 13 | + <body class=" "> | ||
| 14 | + <!-- loader Start --> | ||
| 15 | + <div id="loading"> | ||
| 16 | + <div id="loading-center"> | ||
| 17 | + </div> | ||
| 18 | + </div> | ||
| 19 | + <!-- loader END --> | ||
| 20 | + | ||
| 21 | + <div class="wrapper"> | ||
| 22 | + <section class="login-content" style="background-image: url(https://img0.baidu.com/it/u=4260343253,426122526&fm=253&fmt=auto&app=120&f=JPEG?w=1280&h=800);background-repeat: no-repeat;background-size: cover"> | ||
| 23 | + <div class="container h-100"> | ||
| 24 | + <div class="row align-items-center justify-content-center h-100"> | ||
| 25 | + <div class="col-md-5"> | ||
| 26 | + <div class="card p-3"> | ||
| 27 | + {% block content %} | ||
| 28 | + <div class="card-body"> | ||
| 29 | + <div class="auth-logo"> | ||
| 30 | + <img src="https://weibo.com/favicon.ico" class="img-fluid rounded-normal light-logo" alt="logo"> | ||
| 31 | + </div> | ||
| 32 | + <h3 class="mb-3 font-weight-bold text-center">登录</h3> | ||
| 33 | + <p class="text-center text-secondary mb-4">微博话题舆情分析可视化系统 - flask echarts SnowNLP</p> | ||
| 34 | + <div class="mb-5"> | ||
| 35 | + <p class="line-around text-secondary mb-0"><span class="line-around-1">输入您的用户名和密码</span></p> | ||
| 36 | + </div> | ||
| 37 | + <form method="POST" action="/user/login"> | ||
| 38 | + <div class="row"> | ||
| 39 | + <div class="col-lg-12"> | ||
| 40 | + <div class="form-group"> | ||
| 41 | + <label class="text-secondary">用户名</label> | ||
| 42 | + <input class="form-control" name="username" type="text" placeholder="请输入您的用户名"> | ||
| 43 | + </div> | ||
| 44 | + </div> | ||
| 45 | + <div class="col-lg-12 mt-2"> | ||
| 46 | + <div class="form-group"> | ||
| 47 | + <div class="d-flex justify-content-between align-items-center"> | ||
| 48 | + <label class="text-secondary">密码</label> | ||
| 49 | + </div> | ||
| 50 | + <input class="form-control" name="password" type="password" placeholder="请输入您的密码"> | ||
| 51 | + </div> | ||
| 52 | + </div> | ||
| 53 | + </div> | ||
| 54 | + <button type="submit" class="btn btn-primary btn-block mt-2">登录</button> | ||
| 55 | + <div class="col-lg-12 mt-3"> | ||
| 56 | + <p class="mb-0 text-center">还没有账号? <a href="/user/register">注册</a></p> | ||
| 57 | + </div> | ||
| 58 | + </form> | ||
| 59 | + </div> | ||
| 60 | + {% endblock %} | ||
| 61 | + </div> | ||
| 62 | + </div> | ||
| 63 | + </div> | ||
| 64 | + </div> | ||
| 65 | + </section> | ||
| 66 | + </div> | ||
| 67 | + | ||
| 68 | + <script src="/static/js/backend-bundle.min.js"></script> | ||
| 69 | + <script src="/static/js/customizer.js"></script> | ||
| 70 | + <script src="/static/js/sidebar.js"></script> | ||
| 71 | + <script src="/static/js/flex-tree.min.js"></script> | ||
| 72 | + <script src="/static/js/tree.js"></script> | ||
| 73 | + <script src="/static/js/table-treeview.js"></script> | ||
| 74 | + <script src="/static/js/sweetalert.js"></script> | ||
| 75 | + <script src="/static/js/vector-map-custom.js"></script> | ||
| 76 | + <script src="/static/js/chart-custom.js"></script> | ||
| 77 | + <script src="/static/js/01.js"></script> | ||
| 78 | + <script src="/static/js/02.js"></script> | ||
| 79 | + <script src="/static/js/slider.js"></script> | ||
| 80 | + <script src="/static/js/index.js" type="module"></script> | ||
| 81 | + <script src="/static/js/app.js"></script> </body> | ||
| 82 | +</html> |
-
Please register or login to post a comment