Group12-AIInterview/templates/index.html

47 lines
1.8 KiB
HTML
Raw Normal View History

2026-01-07 14:05:46 +08:00
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ app_name }}</title>
<link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}">
</head>
<body>
<div class="container">
<header>
<h1>🤖 {{ app_name }}</h1>
<p class="subtitle">AI智能面试助手 - 助力求职者成功</p>
</header>
<main>
<section class="hero">
<div class="hero-content">
<h2>专业的AI面试辅导</h2>
<p>通过智能分析提升您的面试表现,获得针对性的反馈和建议</p>
<ul class="features">
<li>📋 个性化面试流程设置</li>
<li>🧠 AI智能回答分析</li>
<li>📊 详细的面试结果评估</li>
<li>💡 专业的改进建议</li>
</ul>
<a href="{{ url_for('start_interview') }}" class="btn btn-primary">开始面试</a>
</div>
<div class="hero-image">
<div class="interview-illustration">
<div class="person"></div>
<div class="ai-robot"></div>
<div class="chat-bubbles">
<div class="bubble person-bubble">我有丰富的项目经验...</div>
<div class="bubble ai-bubble">很好,请详细说明...</div>
</div>
</div>
</div>
</section>
</main>
<footer>
<p>&copy; 2026 {{ app_name }} | 智能面试助手</p>
</footer>
</div>
</body>
</html>