-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
27 lines (25 loc) · 969 Bytes
/
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
<html>
<head>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="root">
<div class="header">
<img src="assets/logo.png" alt="syntaxer logo" />
</div>
<div class="title">
Highlight your article title, we'll generate a corresponding article for you.
</div>
<div id="key_needed" class="subtitle">
<p>To get started, add your OpenAI API Key!</p>
<input id="key_input" class="text-field"/>
<button id="save_key_button" class="button-add">Add key</button>
</div>
<div id="key_entered" class="alt_subtitle">
<p>You've entered your OpenAI API Key.</p>
<button id="change_key_button" class="button-change">Change key</button>
</div>
</div>
</body>
<script src="index.js"></script>
</html>