-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
76 lines (66 loc) · 2.24 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
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"/>
<title>{{extName}}</title>
<link rel="stylesheet" type="text/css" href="css/options.css">
<link rel="stylesheet" type="text/css" href="lib/jsTabs/tabs.css">
</head>
<body>
<div id=message_place>
<span id="error">{{o_error}}</span>
<span id="success">{{o_saved}}</span>
</div>
<div id="page">
<header>
<img src="img/ext_icons/128.png" title="{{extDescr}}" width="48" height="48">
<strong>{{extName}}</strong>
</header>
<section id="main_tabs" class="tabs">
<ul class="tabs_nav">
<li><a href="#main">{{o_tabs_main}}</a></li>
<li><a href="#help">{{o_tabs_help}}</a></li>
</ul>
<div class="tabs_content">
<div id="main">
<label class="saved">All changes saved automatically</label>
<br>
<label>Greetings</label>
<div>
<textarea id="greetings"></textarea>
</div>
<label>Prewishes</label>
<div>
<textarea id="prewishes"></textarea>
</div>
<label>Wishes (minimum 3)</label>
<div>
<textarea id="wishes"></textarea>
</div>
<label>3 of those smiles will be used:</label>
<div>
😘🙂😊☺😄😁😃😀😎🤠😺😸😼👏👍🍰🎂🍮🍭🍬🍫🍩🍪🍧🍨🍦🥂🍺🍷🍹🍾🏅🎸🎷❗
</div>
<br>
The result Birthday Wish will be:
Greeting + Prewishes + Wish, Wish and Wish! 3 smiles. Ex:<br>
<div id="example"></div>
</div>
<div id="help">
</div>
</div>
</section>
<footer>
<p class="reset-btn">Reset to default wishes</p>
<p class="copyright">by <a href="http://" target="_blank">Cow Hacks Day</a></p>
</footer>
</div>
<script src="lib/jquery.min.js"></script>
<script src="js/helpers/localizer.js"></script>
<script src="lib/jsTabs/tabs.js"></script>
<script src="js/storage.js"></script>
<script src="js/helpers/quick_options.js"></script>
<!--<script src="lib/jquery.min.js"></script>-->
<script src="js/options.js"></script>
</body>
</html>