remove local css-lib
parent
939058411e
commit
15ced25f74
|
@ -23,6 +23,7 @@
|
|||
* 发现Python版本的Bokeh功能控件部署在服务器上存在的一些问题,包括后台终端无后台信息等,暂时将该功能控件禁用。
|
||||
* 新增Mongo数据库的使用,计划用来记录用户的行为数据;该数据库的部署已经完成;该数据库的python封装已完成雏形,但尚不完善,需要后续根据采集节点的设计进一步完善。
|
||||
* 后续需要在项目管理方面进行梳理,当前代码库已经存在一定的混乱。
|
||||
* 将代码库中的`font-awesome`css库从本地删去,改为线上CDN加载。
|
||||
* 2021年1月20日,完成了服务器基本框架的搭建。实现的功能有:
|
||||
* 用户登录、认证、退出系统,新用户注册新账户
|
||||
* 在mysql数据库中存储、更新用户基本信息
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -24,12 +24,15 @@ License URL: http://creativecommons.org/licenses/by/3.0/
|
|||
<!-- //Meta-Tags -->
|
||||
|
||||
<!-- css files -->
|
||||
<link href="static/login/css/font-awesome.min.css" rel="stylesheet" type="text/css" media="all">
|
||||
<link rel="stylesheet" href="https://cdn.staticfile.org/font-awesome/4.7.0/css/font-awesome.min.css">
|
||||
<!--
|
||||
<link href="static/login/css/font-awesome.min.css" rel="stylesheet" type="text/css" media="all">
|
||||
-->
|
||||
<link href="static/login/css/style.css" rel="stylesheet" type="text/css" media="all"/>
|
||||
<!-- //css files -->
|
||||
|
||||
<!-- google fonts -->
|
||||
<link href="//fonts.googleapis.com/css?family=Raleway:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/css?family=Raleway:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i" rel="stylesheet">
|
||||
<!-- //google fonts -->
|
||||
|
||||
</head>
|
||||
|
|
|
@ -21,13 +21,14 @@
|
|||
</script>
|
||||
<!-- Meta tags -->
|
||||
<!-- font-awesome icons -->
|
||||
<link href="static/register/css/font-awesome.min.css" rel="stylesheet">
|
||||
<link rel="stylesheet" href="https://cdn.staticfile.org/font-awesome/4.7.0/css/font-awesome.min.css">
|
||||
<!--<link href="static/register/css/font-awesome.min.css" rel="stylesheet">-->
|
||||
<!-- //font-awesome icons -->
|
||||
<!--stylesheets-->
|
||||
<link href="static/register/css/style.css" rel='stylesheet' type='text/css' media="all">
|
||||
<!--//style sheet end here-->
|
||||
<link href="//fonts.googleapis.com/css?family=Montserrat:300,400,500,600" rel="stylesheet">
|
||||
<link href="//fonts.googleapis.com/css?family=Open+Sans:400,600,700" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,600,700" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<h1 class="error">Gadget Sign Up Form</h1>
|
||||
|
|
Loading…
Reference in New Issue