forked from sterlingstokes/gifstasher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
67 lines (64 loc) · 2.35 KB
/
options.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!doctype html>
<head>
<meta charset="utf-8">
<title>gifstasher</title>
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/main.css">
<script data-main="js/options" src="js/require.js"></script>
</head>
<body>
<div id="options" class="container">
<img src="img/icon-large.png" alt="Gifstasher">
<table class="table">
<thead>
<tr>
<th>
<h4>Options</h4>
</th>
</tr>
</thead>
<tbody>
<tr data-toggle="modal" data-target="#removeModal">
<td>
<span class="option-title">Unstash all gifs</span>
<button class="btn pull-right">
<i class="fa fa-trash-o"></i>
</button>
</td>
</tr>
<tr id="email-btn">
<td>
<span class="option-title">Email feedback</span>
<button class="btn pull-right">
<i class="fa fa-envelope-o"></i>
</button>
</td>
</tr>
</tbody>
</table>
</div>
<footer class="container" id="copyright" style="text-align:center;">Made with <i class="fa fa-heart"></i> in Gainesville, FL. © 2015 Cloudbuster Development.</footer>
<div class="alert alert-dismissable" id="flash">
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
<strong><span id="flash-title"></span></strong> <span id="flash-message"></span>
</div>
<div class="modal fade" id="removeModal" tabindex="-1" role="dialog" aria-labelledby="removeModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title" id="removeModalLabel">Remove all gifs?</h4>
</div>
<div class="modal-body">
Are you sure you want to remove all of your gifs?
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
<button type="button" class="btn btn-primary" id="clearGifs" data-dismiss="modal">Yes, remove all of my gifs</button>
</div>
</div>
</div>
</div>
</body>
</html>