-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (34 loc) · 1.22 KB
/
index.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
31
32
33
34
<!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="styles.css">
<title>One Chat</title>
</head>
<body>
<div class="container">
<div class="sidebar">
<button id="open-file">Open Chat File</button>
<button id="save-file">Save Chat</button>
<button id="save-as">Save Chat As</button>
<button id="clear-chat">Clear Workspace</button>
<button id="open-dir">Open Directory</button>
<div id="dir-content"></div>
</div>
<div class="editor">
<div id="message-list"></div>
<div class="message-input">
<select id="role-select">
<option value="user">User</option>
<option value="assistant">Assistant</option>
<option value="system">System</option>
</select>
<textarea id="message-input-field" placeholder="Type your message here..."></textarea>
<button id="add-button">Add</button>
</div>
</div>
</div>
<script src="renderer.js"></script>
</body>
</html>