-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
163 lines (158 loc) · 5.29 KB
/
home.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>M2W</title>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/5.0.0-alpha1/css/bootstrap.min.css"
integrity="sha384-r4NyP46KrjDleawBgD5tp8Y7UzmLA05oM1iAEQ17CSuDqnUK2+k9luXQOfXJCJ4I"
crossorigin="anonymous"
/>
<link href="./style.css" rel="stylesheet" />
<link rel="icon" href="https://www.svgrepo.com/show/106976/whatsapp.svg" />
<style>
.bd-placeholder-img {
font-size: 1.125rem;
text-anchor: middle;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
@media (min-width: 768px) {
.bd-placeholder-img-lg {
font-size: 3.5rem;
}
}
.loader {
border: 16px solid #f3f3f3;
border-radius: 50%;
border-top: 16px solid #3498db;
width: 120px;
height: 120px;
animation: spin 2s linear infinite;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
</style>
<link
href="https://fonts.googleapis.com/css?family=Playfair+Display:700,900&display=swap"
rel="stylesheet"
/>
</head>
<body onload="start()">
<script>
var collapseElementList = [].slice.call(
document.querySelectorAll(".collapse")
);
var collapseList = collapseElementList.map(function (collapseEl) {
return new bootstrap.Collapse(collapseEl);
});
var tooltipTriggerList = [].slice.call(
document.querySelectorAll('[data-bs-toggle="tooltip"]')
);
var tooltipList = tooltipTriggerList.map(function (tooltipTriggerEl) {
return new bootstrap.Tooltip(tooltipTriggerEl);
});
</script>
<div class="form-control input-group-text" role="group">
<div class="form-check form-switch">
<input class="form-check-input" type="checkbox" id="switch" checked onclick="switchLang();">
<label class="form-check-label" for="switch" id="switchLabel">עברית</label>
</div>
</div>
<div class="form-control input-group-text" role="group">
<button
onclick="window.location.href='./preMes.html';"
class="btn form-control btn-outline-secondary"
id="toPreMes"
>
אישור והזמנה להקלטה
</button>
<button
onclick="window.location.href='./rightAfterMes.html';"
class="btn form-control btn-outline-secondary"
id="toRightAfterMes"
>
הזמנה לוואטסאפ חרוזים
</button>
<button
onclick="window.location.href='./postMes.html';"
class="btn form-control btn-outline-secondary"
id="toPostMes"
>
לינקים לתוצרים
</button>
<button
onclick="window.location.href='./postMesInvite.html';"
class="btn form-control btn-outline-secondary"
id="toPostMesInvite"
>
לינקים להזמנת אורח
</button>
</div>
<div class="form-control input-group-text" role="group">
<button
onclick="window.location.href='./socialPost.html';"
class="btn form-control btn-outline-secondary"
id="toSocialPost"
>
פוסט (לוח פרסום)
</button>
<button
onclick="window.location.href='./newChain.html';"
class="btn form-control btn-outline-secondary"
id="toNewChain"
>
פתיחת שרשרת חדשה
</button>
<button
onclick="window.location.href='./stuckMes.html';"
class="btn form-control btn-outline-secondary"
id="toStuckMes"
>
חרוזים אחרונים
</button>
<button
onclick="window.location.href='./changeCRM.html';"
class="btn form-control btn-outline-secondary"
id="toChangeCRM"
>
עדכון תוצרים ותיקונים
</button>
</div>
<div class="form-control input-group-text" role="group">
<button
onclick="window.location.href='./display.html';"
class="btn form-control btn-outline-secondary"
id="toDisplay"
>
הכרטיס
</button>
</div>
<div class="form-control mb-3" role="group" id="options">
<h3 class="mb-0"><u id="today"></u></h3>
<div id="loader" class="loader"></div>
<ul id="list"></ul>
</div>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"
integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo"
crossorigin="anonymous"
></script>
<script
src="https://stackpath.bootstrapcdn.com/bootstrap/5.0.0-alpha1/js/bootstrap.min.js"
integrity="sha384-oesi62hOLfzrys4LxRF63OJCXdXDipiYWBnvTl9Y9/TRlw5xlKIEHpNyvvDShgf/"
crossorigin="anonymous"
></script>
<script src="home.js"></script>
</body>
</html>