AntiScamAI/web/index.html

40 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AntiScamAI - 首页</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1>AntiScamAI - 首页</h1>
<!-- 钓鱼网站检测 -->
<div class="section">
<h2>钓鱼网站检测</h2>
<input type="text" id="urlInput" placeholder="输入网址进行检测">
<button onclick="checkPhishingWebsite()">检测网址</button>
<div id="urlResult" class="result"></div>
</div>
<!-- 聊天图片检测 -->
<div class="section">
<h2>聊天图片检测</h2>
<input type="file" id="imageInput">
<button onclick="checkChatImage()">检测图片</button>
<div id="imageResult" class="result"></div>
</div>
<!-- 话术检测 -->
<div class="section">
<h2>话术检测</h2>
<input type="text" id="textInput" placeholder="输入文本进行检测">
<button onclick="checkScript()">检测话术</button>
<div id="textResult" class="result"></div>
</div>
</div>
<script src="main.js"></script>
</body>
</html>