-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (25 loc) · 905 Bytes
/
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
<!doctype html>
<html>
<head>
<title>Backup your Tweets</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/app.css" rel="stylesheet">
<script src="js/jquery.js" type="text/javascript"></script>
</head>
<body>
<section class="container">
<h1>Backup your tweets</h1>
<form class="well form-inline" onsubmit="return false">
<input type="text" class="name" placeholder="twitter screen name" />
<label class="checkbox">
<input type="checkbox" class="includeRTs"> include RTs
</label>
<button class="btn btn-primary">Fetch</button>
</form>
<div class="progress progress-striped active hidden" style="width: 50%; margin: 0 auto;">
<div class="bar" style="width: 100%;"></div>
</div>
</section>
<script src="js/app.js" type="text/javascript"></script>
</body>
</html>