This repository has been archived on 2026-08-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
RequestCounter/static/index.html
T

44 lines
1.3 KiB
HTML
Raw Permalink Normal View History

2022-02-08 19:46:11 +08:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Request Counter - Index - Flask</title>
<style>
.intro{
text-align: center;
}
a{
color: green;
}
</style>
</head>
<body>
<div class="intro">
<br>
<br>
2022-02-11 16:53:07 +08:00
<i>看到这句话就说明程序正常运行啦!! <a href="https://markusjoe.github.io/RequestCounter/" target="_blank">查看文档</a></i>
2022-02-08 19:46:11 +08:00
<br>
2022-02-11 16:53:07 +08:00
<i>服务端使用Flask开发没有使用异步编程</i>
<br>
<i><a href="http://127.0.0.1:5000/get?name=RequestCounter">点击查看本地部署示例</a></i>
<br>
<i><a href="https://requestcounter.herokuapp.com/get?name=RequestCounter">点击查看已部署好的调用示例</a></i>
<br>
<i><b>注: 调用支持POST 和 GET 方法请求</b></i>
2022-02-08 19:46:11 +08:00
<br>
<br>
<i>项目开源协议: <b>Apache-2.0</b> 即:
<br>
你可以直接使用该项目提供的功能, 无需任何授权
<br>
你可以在注明来源版权信息的情况下对源代码进行任意分发和修改以及衍生
</i>
<br>
2022-02-11 16:53:07 +08:00
<p>效果是这样的↓</p>
<img src="https://requestcounter.herokuapp.com/get?name=RequestCounter" alt="example">
2022-02-08 19:46:11 +08:00
<br>
2022-02-11 16:53:07 +08:00
<i>默认主题为 lewd</i>
2022-02-08 19:46:11 +08:00
<br>
</div>
</body>
2022-02-03 20:02:38 +08:00
</html>