-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoptions.html
43 lines (40 loc) · 1.64 KB
/
options.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
35
36
37
38
39
40
41
42
43
<!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" />
<title>Showwand - Settings Page</title>
<link rel="stylesheet" href="style/options.css" />
</head>
<body>
<div class="container">
<div class="content">
<div class="block setting-block">
<!-- Modal to enter API key -->
<div class="modal" id="api-key-modal1">
<div class="modal-content">
<h2>Enter your Showwcase API Key</h2>
<form action="#" id="api-username-form-options-page">
<label for="api-key-input-options-page">API Key</label>
<input type="text" name="api-key" id="api-key-input-options-page" placeholder="API Key" required />
<span id="get-api">Get your <a href="https://www.showwcase.com/settings/api-keys" target="_blank">API
Key</a> from here.</span>
<button type="submit" id="save-api-key-btn-options-page" class="common-btn">
<svg class="paper-plane" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor"
aria-hidden="true">
<path
d="M10.894 2.553a1 1 0 00-1.788 0l-7 14a1 1 0 001.169 1.409l5-1.429A1 1 0 009 15.571V11a1 1 0 112 0v4.571a1 1 0 00.725.962l5 1.428a1 1 0 001.17-1.408l-7-14z">
</path>
</svg>
Submit
</button>
</form>
</div>
</div>
</div>
</div>
</div>
<script src="js/options.js"></script>
</body>
</html>