AntiScamAI/web/ai-assistant.html

30 lines
974 B
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!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="ai-assistant.css">
<script src="ai-assistant.js"></script>
</head>
<body>
<div class="chat-container">
<!-- 标题栏 -->
<div class="header">AntiScamAI - 反诈助理</div>
<!-- 对话内容区域 -->
<div class="chat-box" id="chat-box">
<!-- 示例对话 -->
<div class="ai-message">
<div class="message">您好我是AI反诈助理请问有什么可以帮您的吗</div>
</div>
</div>
<!-- 输入区域 -->
<div class="input-area">
<input type="text" id="user-input" placeholder="请输入您的问题..." />
<button onclick="sendMessage()">发送</button>
</div>
</div>
</body>
</html>