-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
89 lines (89 loc) · 2.79 KB
/
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
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
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html>
<head>
<title>ConfOptions</title>
<meta content="text/html" charset="utf-8">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="font-awesome/css/font-awesome.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script type="text/javascript" src="js/script.js"></script>
</head>
<body>
<div class="wrapper">
<h2>Configuration Options</h2>
<ul class="support">
<h4>Support</h4>
<p>Something not working right? We`ll be happy to help you if you get in touch!</p>
<li>
<a class="blue_link" href="#">+542 95 5924548</a>
</li>
<li>
<a class="blue_link" href="mailto:mail@mail">mail@mail</a>
</li>
<li>
<a class="blue_link" href="#">Frequently Asked Questions</a>
</li>
</ul>
<div class="dashboard">
<a href="#">Go to your Dashboard</a>
</div>
<div id="widget_1">
<div class="head">
<div id="button1" class="button disabled">
<div class="white_box" id="white_box1">
<a href="#"></a>
</div>
<i id="check1" class="fa fa-times"></i>
</div>
<h3>Widget 1</h3>
<a class="blue_link" href="#">Customise</a>
</div>
</div>
<div id="widget_2">
<div class="head">
<div id="button2" class="button enabled">
<div class="white_box">
<a href="#"></a>
</div>
<i class="fa fa-check"></i>
</div>
<h3>Widget 2</h3>
</div>
<div id="show_hide" class="show">
<ul class="selection">
<li>
<a class="selector" href="#">
<div class="green_check">
</div>
</a>
Below
</li>
<li>
<a class="selector" href="#">
<div class="green_check">
</div>
</a>
On
</li>
<li>
<a class="selector" href="#">
<div class="green_check">
</div>
</a>
Custom
</li>
</ul>
<ol>
<h3>Inserting widget in a custom location</h3>
<li>Open <b>new/app/index.html</b></li>
<li>Copy and past <b>some_function();</b> where you`d like your <b>widget 1</b> to be displayed.</li>
<li>Copy and past <b>one_more_function();</b> where you`d like your <b>widget 2</b> to be displayed.</li>
</ol>
</div>
</div>
<input id="check" type="checkbox" hidden>
<label for="check">Disable built-in widget (recommended)</label>
<div class="save"><a href="#">Save changes</a></div>
</div>
</body>
</html>