-
Notifications
You must be signed in to change notification settings - Fork 0
/
sidepanel.html
65 lines (54 loc) · 2.18 KB
/
sidepanel.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!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="css/style.css">
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
<title>Are.na Snip</title>
</head>
<body>
<div id="toast" style="display: none;"></div>
<div id="auth-container" class="container">
<img src="img/logo.png">
<a href="https://github.com/ovdixon/are.na-snip" id="login" >Login with Are.na</a>
<a href="https://github.com/ovdixon/are.na-snip">GitHub</a>
</div>
<div id="snip-container">
<div id="bottom-links">
<a href="https://github.com/ovdixon/are.na-snip" target="_blank">GitHub</a>
<a href="https://are.na" target="_blank">Are.na</a>
<a href="https://github.com/ovdixon/are.na-snip" id="logout">Logout</a>
</div>
<div id="image-container">
<img id="image-preview" class="preview" src="" alt="Screenshot">
<div id="image-null" class="preview">
<img src="img/logo.png">
<p>
Right click to snip
<br>-<br>
Drag something
<br>-<br>
Save this link
<br>
<span style="color: black;" id="page-link"></span> ...
</p>
</div>
</div>
<input id="title-input" type="text" placeholder="Title">
<input id="description-input" type="text" placeholder="Description">
<div>
<div id="channel-search">
<input id="search-input" type="text" placeholder="Search for a channel">
<button id="search-submit" disabled><span class="material-symbols-outlined">search</span></button>
</div>
<table id="channels-table"></table>
</div>
<div id="snip-actions">
<button id="save-button">Save</button>
</div>
</div>
<script src="js/index.js"></script>
</body>
</html>