-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
30 lines (29 loc) · 1.01 KB
/
popup.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="./config.js"></script>
<script src="./popup.js"></script>
<link rel="stylesheet" href="styles.css">
<title>Using CHAT GPT</title>
</head>
<body>
<div id="logInContainer">
<h1>CHAT GPT</h1>
<form id = "formEmail" >
<input type="text" id="userName" name="name" placeholder="Your name" required>
<input type="email" id="email" name="email" placeholder="Email" required>
<input id="btnEmail" type="submit" value="Log In">
</form>
</div>
<div id="chatContainer">
<h1>CHAT GPT - Input your question</h1>
<textarea id="userQuestion" name="user_input" cols="40" rows="6"></textarea>
<div id="chatAns"></div>
<button id="btn">Search</button>
<button id="refresh">Refresh</button>
</div>
</body>
</html>