-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgo.html
37 lines (33 loc) · 941 Bytes
/
go.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="./css/go.css">
<link rel="stylesheet" href="./css/shared.css">
<script src="./js/shared.js"></script>
<script src="./js/go.js"></script>
</head>
<body>
<div id="savedContainer">
<div id="saved">
Saved
</div>
</div>
<div id="nothing">
<h2>No shortcut found for <span></span></h2>
</div>
<div id="found">
<h2>Editing <span></span></h2>
</div>
<div>
<div id="add">Create new shortcut:</div>
<div id="edit">Edit shortcut:</div>
<div>
<span id="shortcutText"></span>
<input id="destinationInput" type="text" size="50" placeholder="ex: http://www.example.com" />
</div>
</div>
<div id="viewAll">
<a href="go_all.html">View all go/ shortcuts</a> - <a href="options.html">View built-in shortcuts</a>
</div>
</body>
</html>