-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
40 lines (36 loc) · 919 Bytes
/
popup.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
<!doctype html>
<html lang="en">
<head>
<title>Mirror Maker</title>
<meta charset="utf-8">
<style>
body {
font-family: "Segoe UI", "Lucida Grande", Tahoma, sans-serif;
font-size: 16px;
}
#status {
/* avoid an excessively wide status text */
white-space: pre;
text-overflow: ellipsis;
overflow: hidden;
max-width: 400px;
}
h1 {
font-size: 1.618em;
}
</style>
<script src="jquery-3.2.1.min.js"></script>
<script src="popup.js"></script>
</head>
<body>
<h1>Mirror Maker for Streamable</h1>
<div class="upload-form">
<label for="title">Title (optional):</label>
<input id="title" type="text">
<label for="url">URL:</label>
<input id="url" type="text">
<p class="status"></p>
<button class="btn">Upload</button>
</div>
</body>
</html>