-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpopup.html
30 lines (26 loc) · 921 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" type="text/css" href="bootstrap.min.css">
<title>
Add Feeds
</title>
</head>
<body>
<div class="container popup">
<div class="input-group">
<input type="text" class="form-control url" placeholder="RSS Feed URL" id="url">
<span class="input-group-btn">
<button class="btn btn-default" type="button" id="add">Add Feed</button>
</span>
</div>
<p id="heading">
There are no feeds being monitored.
</p>
<ul class="list-group" id="list"></ul>
</div>
<script src="jquery-2.1.1.min.js"></script>
<script src="popup.js"></script>
</body>
</html>