-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.html
More file actions
52 lines (52 loc) · 1.91 KB
/
template.html
File metadata and controls
52 lines (52 loc) · 1.91 KB
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
<!doctype html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>RSS Reader</title>
</head>
<body>
<main role="main" class="container">
<div class="jumbotron">
<h1>RSS reader</h1>
<p class="lead">The easiest way to follow news from your favorite websites and blogs.</p>
<form id="rss-form">
<div class="input-group mb-3">
<div class="input-group-prepend">
<button type="submit" class="btn btn-primary" id="btn-add-channel" disabled>Add Feed</button>
</div>
<input type="text" name="input-url" class="form-control" id="input-url" placeholder="Enter a website or feed url" aria-label="Enter a website or feed url">
<div class="valid-feedback" style="margin-left: 112px;">
Looks good!
</div>
<div class="invalid-feedback" style="margin-left: 112px;">
</div>
</div>
</form>
</div>
<div id='alert-container'>
</div>
<div class="row">
<div class="col-12 col-md-4">
<div class="list-group" id='channel-list'>
</div>
</div>
<div class="list-group col-12 col-md-8" id="item-list">
</div>
</div>
<div id="modalDesc" class="modal fade">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="modalTitle">Description</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body" id="modal-body">
</div>
</div>
</div>
</div>
</main>
</body>
</html>