This commit is contained in:
YeZheng
2024-01-19 11:24:17 +08:00
parent 0696c7d253
commit e9be3a173c
8 changed files with 1929 additions and 0 deletions

11
templates/get_news.html Normal file
View File

@@ -0,0 +1,11 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<h3>详细信息</h3>
递四方速递发生发顺丰的大师放的防守打法似懂非懂
</body>
</html>

23
templates/goods_list.html Normal file
View File

@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>商品</title>
</head>
<body>
<h1>商品列表</h1>
<a href="https://www.mi.com/shop/buy/detail?product_id=19446" target="_blank">
<img src="/static/2.png"/>
</a>
<a href="https://www.mi.com/shop/buy/detail?product_id=19432" target="_blank">
<img src="/static/3.png"/>
</a>
<a href="https://www.mi.com/shop/buy/detail?product_id=19446" target="_blank">
<img src="/static/4.png"/>
</a>
</body>
</html>

76
templates/index.html Normal file
View File

@@ -0,0 +1,76 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>我的地盘</title>
</head>
<body>
<h1>中国移动</h1>
<span style="color: red">中国联通</span><span style="color: mediumblue">中国联通</span>
<a href="http://www.10086.cn/index/sh/index_210_210.html" target="_blank">上海移动</a>
<a href="/get/news">查看更多</a>
<img style="height: 300px;width: 500px" src="https://img0.baidu.com/it/u=3626299047,1080739560&fm=253&fmt=auto&app=138&f=JPEG?w=889&h=500" />
<img style="height: 300px;width: 500px" src="/static/1.png" />
<img style="height: 15%;width: 20%" src="/static/1.png" />
<h1>运营商列表</h1>
<ul>
<li>中国移动</li>
<li>中国联动</li>
<li>中国电信</li>
</ul>
<h1>运营商列表</h1>
<ol>
<li>中国移动</li>
<li>中国联动</li>
<li>中国电信</li>
</ol>
<h1>数据表格</h1>
<table border="1">
<thead>
<tr><th>ID</th><th>姓名</th><th>年龄</th></tr>
</thead>
<tbody>
<tr><td>18</td><td>张三</td><td>19</td></tr>
<tr><td>20</td><td>李四</td><td>19</td></tr>
<tr><td>19</td><td>王五</td><td>19</td></tr>
</tbody>
</table>
<h1>输入内容</h1>
<input type="text" />
<input type="password" />
<input type="file" />
<input type="radio" name="n1" />
<input type="radio" name="n1" />
<input type="checkbox" />篮球
<input type="checkbox" />足球
<input type="checkbox" />棒球
<input type="checkbox" />乒乓球
<input type="button" value="提交" />
<input type="submit" value="提交" />
<input type="reset" value="重置" />
<select>
<option>北京</option>
<option>上海</option>
<option>深圳</option>
</select>
<select multiple>
<option>北京</option>
<option>上海</option>
<option>深圳</option>
</select>
<br />
<h1>多行文本</h1>
<textarea></textarea>
<textarea rows="3"></textarea>
</body>
</html>

1635
templates/index.json Normal file

File diff suppressed because it is too large Load Diff

31
templates/login.html Normal file
View File

@@ -0,0 +1,31 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>用户登录</title>
<style>
.c1 {
color: red;
}
.c2 {
height: 50px;
}
</style>
</head>
<body>
<h1 class="c1">用户登录</h1>
<form method="post" action="/login">
<div class="c2">
用户名: <input type="text" name="username"/>
</div>
<div class="c2">
密码: <input type="password" name="password"/>
</div>
<input type="submit" value="登录"/>
</form>
</body>
</html>

55
templates/register.html Normal file
View File

@@ -0,0 +1,55 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<link rel="stylesheet" href="/static/commons.css">
</head>
<body>
<h1 class="xx">用户注册</h1>
<form method="post" action="/register">
<div>
用户名: <input type="text"/>
</div>
<div>
密码: <input type="password"/>
</div>
<div>
性别:
<input type="radio">
<input type="radio">
</div>
<div>
爱好:
<input type="checkbox">篮球
<input type="checkbox">足球
<input type="checkbox">乒乓球
</div>
<div>
城市:
<select>
<option>北京</option>
<option>上海</option>
<option>深圳</option>
</select>
</div>
<div>
擅长领域:
<select multiple>
<option>打游戏</option>
<option>睡觉</option>
<option>吃饭</option>
<option>刷抖音</option>
</select>
</div>
<div>
备注:
<textarea></textarea>
</div>
<div>
<input type="submit" value="注册"/>
</div>
</form>
</body>
</html>

20
templates/test.html Normal file
View File

@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>我的地盘</title>
</head>
<body>
<h1>登录</h1>
<input type="text" /><br/>
<input type="password" /><br/>
<input type="submit" value="提交" />
</body>
</html>

78
templates/user_list.html Normal file
View File

@@ -0,0 +1,78 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>用户</title>
</head>
<body>
<h1>用户列表</h1>
<table border="1px">
<thead>
<tr>
<th>ID</th>
<th>头像</th>
<th>姓名</th>
<th>邮箱</th>
<th>更多信息</th>
<th>操作</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td><img src="/static/1.png" alt="" width="100px" height="50px"></td>
<td>墨雨轩</td>
<td>123456@qq.com</td>
<td>
<a href="/show/info">点击查看详细</a>
</td>
<td>
<a href="/delete/1">修改</a>
<a href="/update/1">删除</a>
</td>
</tr>
<tr>
<td>2</td>
<td><img src="/static/1.png" alt="" width="100px" height="50px"></td>
<td>墨雨轩</td>
<td>123456@qq.com</td>
<td>
<a href="/show/info">点击查看详细</a>
</td>
<td>
<a href="/update/1">修改</a>
<a href="/delete/1">删除</a>
</td>
</tr>
<tr>
<td>3</td>
<td><img src="/static/1.png" alt="" width="100px" height="50px"></td>
<td>墨雨轩</td>
<td>123456@qq.com</td>
<td>
<a href="/show/info">点击查看详细</a>
</td>
<td>
<a href="/delete/1">修改</a>
<a href="/update/1">删除</a>
</td>
</tr>
<tr>
<td>4</td>
<td><img src="/static/1.png" alt="" width="100px" height="50px"></td>
<td>墨雨轩</td>
<td>123456@qq.com</td>
<td>
<a href="/show/info">点击查看详细</a>
</td>
<td>
<a href="/delete/1">修改</a>
<a href="/update/1">删除</a>
</td>
</tr>
</tbody>
</table>
</body>
</html>