-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
48 lines (45 loc) · 2 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable = no">
<title>BringNow</title>
<style id="themecolorstyle">
:root {
--theme-color: #00ff69
}
</style>
<link rel="stylesheet" href="style.css" type="text/css" media="all" />
<link rel="preconnect" href="https://fonts.gstatic.com">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<link rel="apple-touch-icon" href="/logo.png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" />
</head>
<body>
<h1><span id="title">BringNow 2</span> <a class="help" href="/brings.html"><i class="fas fa-info-circle"></i></a>
</h1>
<noscript><h2>Bringnow relies completely on javascript to function.</h2></noscript>
<div id="bring-wrapper">
<input type="search" id="bring" autocapitalize="off" onsearch="run(bringbox.value)" autofocus>
<button id="enter" onclick="run(document.getElementById('bring').value)"><i
class="fas fa-chevron-right"></i></button>
<button
onclick="document.getElementById('bring').value = ''; document.querySelectorAll('message').forEach(e=>e.remove())"><i
class="fas fa-times"></i></button>
<div id="messages"></div>
</div>
<div id="windows"></div>
<dialog id="new-popup">
<p>Create New Bring </p>
<form method="dialog">
<br> <input id="cmdname" placeholder="Name of command" autocapitalize="off" />
<br> <input id="cmdurl" placeholder="URL with %s in place of query" type="url"
style="font-size: 0.75em; width: 400px;" />
<button onclick="addSE()">OK</button>
<button>Cancel</button>
</form>
</dialog>
<script src="main2.js" type="text/javascript" charset="utf-8"></script>
</body>
</html>