forked from omroy07/AgriTech
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchat.html
More file actions
57 lines (52 loc) · 1.85 KB
/
Copy pathchat.html
File metadata and controls
57 lines (52 loc) · 1.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AgriTech Chatbot</title>
<link rel="stylesheet" href="/chat.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
</head>
<body>
<header>
<div class="header-content">
<div class="logo">
<i class="fas fa-seedling"></i>
<h1>AgriTech Assistant</h1>
</div>
<button class="back-button">
<i class="fas fa-arrow-left"></i> Back to Main
</button>
</div>
</header>
<main>
<div id="chat-container">
<div class="chat-header">
<i class="fas fa-robot"></i>
<h2>Ask me anything about agriculture, crops, or farming techniques</h2>
</div>
<div id="chat-window">
<div class="welcome-message">
<h3><i class="fas fa-leaf"></i> Welcome to AgriTech Assistant!</h3>
<p>I'm powered by Google Gemini AI to help with all your farming questions.</p>
<div class="suggestions">
<div class="suggestion">Best crops for this season?</div>
<div class="suggestion">Organic pest control methods</div>
<div class="suggestion">Water conservation techniques</div>
<div class="suggestion">Soil health improvement</div>
</div>
</div>
</div>
<form id="chat-form">
<div class="input-container">
<input type="text" id="chat-input" placeholder="Ask about crops, weather, fertilizers..." required>
</div>
<button type="submit" id="send-button">
<i class="fas fa-paper-plane"></i> Send
</button>
</form>
</div>
</main>
<script src="/chat.js"></script>
</body>
</html>