-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
60 lines (56 loc) · 1.31 KB
/
Copy pathindex.php
File metadata and controls
60 lines (56 loc) · 1.31 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
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/cookieconsent@3/build/cookieconsent.min.css" />
<script src="https://cdn.jsdelivr.net/npm/cookieconsent@3/build/cookieconsent.min.js"></script>
<script>
window.addEventListener("load", function() {
window.cookieconsent.initialise({
palette: {
popup: {
background: "#fff"
},
button: {
background: "#42b72a",
color: "#fff"
}
},
theme: "classic",
position: "top",
content: {
message: "This site uses cookies to improve your experience.",
dismiss: "Got it!",
link: "Learn more",
href: "privacy.html"
}
});
});
</script>
<link rel="stylesheet" href="style/index.css">
<title>Roq AI</title>
</head>
<body>
<section>
<div class="container">
<h2>AI CHAT BOT</h2>
<div class="req-n-res">
</div>
<form>
<input type="text" name="prompt" required placeholder="Ask anything">
<button>Send</button>
</form>
</div>
</section>
<footer>
<div>
© 2025, Obaro.
</div>
<div style="text-align: center;">
<a href="privacy.html">Privacy Policy</a>
</div>
</footer>
<script src="js/index.js"></script>
</body>
</html>