@silexlabs/silex-dashboard 1.0.59 → 1.0.61
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/_site/connectors/index.html +278 -0
- package/_site/css/connectors-9d0c9569a2ce8afaa4a30a0534b3d0597c761c7e0e5280dcbc966dc2b709e98e.css +1 -0
- package/_site/css/connectors-a8ae93c40b7c738a4514e47046a029afdcf74bb28a7724287e1350afac4fa60f.css +1 -0
- package/_site/css/websites-e6d63d0512032a2909a7f648cecfad311842ecba7bd03f94afc8639998e606f0.css +1 -0
- package/_site/en/connectors/index.html +5 -5
- package/_site/en/index.html +40 -7
- package/_site/fr/connectors/index.html +5 -5
- package/_site/fr/index.html +40 -7
- package/_site/websites/index.html +360 -0
- package/package.json +1 -1
- package/templates/connectors-en.html +32 -32
- package/templates/connectors-fr.html +32 -32
- package/templates/connectors.html +278 -0
- package/templates/css/connectors-9d0c9569a2ce8afaa4a30a0534b3d0597c761c7e0e5280dcbc966dc2b709e98e.css +1 -0
- package/templates/css/connectors-a8ae93c40b7c738a4514e47046a029afdcf74bb28a7724287e1350afac4fa60f.css +1 -0
- package/templates/css/websites-e6d63d0512032a2909a7f648cecfad311842ecba7bd03f94afc8639998e606f0.css +1 -0
- package/templates/websites-en.html +204 -161
- package/templates/websites-fr.html +204 -161
- package/templates/websites.html +360 -0
|
@@ -0,0 +1,278 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8">
|
|
5
|
+
<link rel="stylesheet" href="/css/connectors-9d0c9569a2ce8afaa4a30a0534b3d0597c761c7e0e5280dcbc966dc2b709e98e.css" />
|
|
6
|
+
<!-- font google -->
|
|
7
|
+
<link rel="preconnect" href="https://fonts.gstatic.com" />
|
|
8
|
+
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;700&display=swap" rel="stylesheet">
|
|
9
|
+
|
|
10
|
+
<style>
|
|
11
|
+
.before-js > * {
|
|
12
|
+
visibility: hidden;
|
|
13
|
+
opacity: 0;
|
|
14
|
+
transition: opacity .5s ease;
|
|
15
|
+
}
|
|
16
|
+
.before-js[data-gjs-type] > *, /* This is only inside the editor, .before-js needs to be on the body */
|
|
17
|
+
.after-js > * {
|
|
18
|
+
visibility: visible;
|
|
19
|
+
opacity: 1;
|
|
20
|
+
}
|
|
21
|
+
.before-js:before {
|
|
22
|
+
content: 'Loading';
|
|
23
|
+
position: absolute;
|
|
24
|
+
top: 49%;
|
|
25
|
+
left: 49%;
|
|
26
|
+
}
|
|
27
|
+
.before-js[data-gjs-type]:before, /* This is only inside the editor, .before-js needs to be on the body */
|
|
28
|
+
.after-js:before {
|
|
29
|
+
content: none;
|
|
30
|
+
}
|
|
31
|
+
/*BTNS*/
|
|
32
|
+
.button, .pointer {
|
|
33
|
+
cursor: pointer!important}
|
|
34
|
+
.button{
|
|
35
|
+
min-width:110px;
|
|
36
|
+
}
|
|
37
|
+
details {
|
|
38
|
+
max-height: 2em;
|
|
39
|
+
display: block;
|
|
40
|
+
overflow: hidden;
|
|
41
|
+
transition: max-height .75s ease;
|
|
42
|
+
}
|
|
43
|
+
details[open] {
|
|
44
|
+
max-height: 40em;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
/*BTNS*/
|
|
48
|
+
a {
|
|
49
|
+
text-decoration: none;
|
|
50
|
+
color:#8873FE;
|
|
51
|
+
}
|
|
52
|
+
a:hover {
|
|
53
|
+
text-decoration: underline;
|
|
54
|
+
}
|
|
55
|
+
.uppercase {
|
|
56
|
+
text-transform: uppercase;
|
|
57
|
+
}
|
|
58
|
+
.underline:hover{
|
|
59
|
+
text-decoration: underline;
|
|
60
|
+
text-decoration-thickness: from-font;
|
|
61
|
+
text-underline-position: under;
|
|
62
|
+
}
|
|
63
|
+
/*footer position*/
|
|
64
|
+
.main-min-height {
|
|
65
|
+
min-height: calc(100vh - 560px);
|
|
66
|
+
}
|
|
67
|
+
/*footer position*/
|
|
68
|
+
/*label*/
|
|
69
|
+
::placeholder {
|
|
70
|
+
color: #8873FE;
|
|
71
|
+
}
|
|
72
|
+
input:focus {
|
|
73
|
+
border: 2px solid #9977FE;
|
|
74
|
+
background-color:#ffffff;
|
|
75
|
+
}
|
|
76
|
+
:focus {
|
|
77
|
+
outline: none;
|
|
78
|
+
}
|
|
79
|
+
/*label*/
|
|
80
|
+
.skeleton-anim:after {
|
|
81
|
+
width: 100%;
|
|
82
|
+
height: 100%;
|
|
83
|
+
position: absolute;
|
|
84
|
+
top: 0;
|
|
85
|
+
left: 0;
|
|
86
|
+
content: "";
|
|
87
|
+
background:
|
|
88
|
+
linear-gradient(0.25turn, transparent, rgba(255,255,255,.75), transparent),
|
|
89
|
+
linear-gradient(transparent, transparent),
|
|
90
|
+
radial-gradient(38px circle at 19px 19px, transparent 50%, transparent 51%),
|
|
91
|
+
linear-gradient(transparent, transparent);
|
|
92
|
+
background-repeat: no-repeat;
|
|
93
|
+
background-size: 315px 250px, 315px 180px, 100px 100px, 225px 30px;
|
|
94
|
+
background-position: -315px 0, 0 0, 0px 190px, 50px 195px;
|
|
95
|
+
animation: loading 1.5s infinite;
|
|
96
|
+
}
|
|
97
|
+
@keyframes loading {
|
|
98
|
+
to {
|
|
99
|
+
background-position: 200% 0, 0 0, 0 190px, 50px 195px;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
/*FX ANIMATIONS*/
|
|
103
|
+
/*scale-round-inside_pour-BTN*/
|
|
104
|
+
.fx-scale-round {
|
|
105
|
+
position:relative;
|
|
106
|
+
z-index: 10;
|
|
107
|
+
overflow: hidden;
|
|
108
|
+
}
|
|
109
|
+
.fx-scale-round::after {
|
|
110
|
+
content: "";
|
|
111
|
+
background: #ffffff;
|
|
112
|
+
position: absolute;
|
|
113
|
+
z-index: -1;
|
|
114
|
+
border-radius: 50%;
|
|
115
|
+
left: -50%;
|
|
116
|
+
right: -50%;
|
|
117
|
+
top: -100%;
|
|
118
|
+
bottom: -100%;
|
|
119
|
+
transform: scale(0, 0);
|
|
120
|
+
transform-origin: center bottom;
|
|
121
|
+
transition: all 0.3s ease-out;
|
|
122
|
+
}
|
|
123
|
+
.fx-scale-round:hover {
|
|
124
|
+
transform-origin: center bottom;
|
|
125
|
+
transform: scale(1.1);
|
|
126
|
+
transition: transform 0.2s cubic-bezier(0, -0.530, 0.405, 2.8);
|
|
127
|
+
}
|
|
128
|
+
.fx-scale-round:hover::after {
|
|
129
|
+
transform: scale(1, 1);
|
|
130
|
+
transition: transform 0.2s cubic-bezier(0, -0.530, 0.405, 2.8);
|
|
131
|
+
}
|
|
132
|
+
/*scale-round-inside_pour-BTN*/
|
|
133
|
+
/*scale*/
|
|
134
|
+
.fx-scale:hover {
|
|
135
|
+
transform-origin: center bottom;
|
|
136
|
+
transform: scale(1.1);
|
|
137
|
+
transition: transform 0.2s cubic-bezier(0, -0.530, 0.405, 2.8);
|
|
138
|
+
}
|
|
139
|
+
/*flash*/
|
|
140
|
+
.fx-flash:hover {
|
|
141
|
+
animation: flash-in .25s ;
|
|
142
|
+
}
|
|
143
|
+
/*flash-in animation*/
|
|
144
|
+
@keyframes flash-in{
|
|
145
|
+
0% {
|
|
146
|
+
opacity:.25;
|
|
147
|
+
}
|
|
148
|
+
100% {
|
|
149
|
+
opacity:1;
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
/*flash-in animation*/
|
|
153
|
+
/*FX ANIMATIONS*/
|
|
154
|
+
</style>
|
|
155
|
+
<script src="/js/vue.global.prod.js"></script>
|
|
156
|
+
<script src="/js/main.js"></script>
|
|
157
|
+
<script type="module">
|
|
158
|
+
const CONNECTORS_PATH = ''
|
|
159
|
+
const { createApp } = Vue;
|
|
160
|
+
const { api, constants, types } = silex;
|
|
161
|
+
const {
|
|
162
|
+
ConnectorType,
|
|
163
|
+
} = types
|
|
164
|
+
const {
|
|
165
|
+
setServerUrl,
|
|
166
|
+
getUser,
|
|
167
|
+
logout,
|
|
168
|
+
websiteDelete,
|
|
169
|
+
websiteDuplicate,
|
|
170
|
+
websiteList,
|
|
171
|
+
websiteCreate,
|
|
172
|
+
websiteMetaWrite,
|
|
173
|
+
connectorList,
|
|
174
|
+
} = api
|
|
175
|
+
function toSafeId(name) {
|
|
176
|
+
return name.replace(/[/\\?%*:|"<>]/g, '_')
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
const App = {
|
|
180
|
+
data() {
|
|
181
|
+
return {
|
|
182
|
+
websites: [],
|
|
183
|
+
connectors: [],
|
|
184
|
+
newWebsiteName: '',
|
|
185
|
+
showCreationForm: false,
|
|
186
|
+
error: null,
|
|
187
|
+
message: null,
|
|
188
|
+
loggedIn: false,
|
|
189
|
+
loading: true,
|
|
190
|
+
storage: null,
|
|
191
|
+
user: null,
|
|
192
|
+
showMenu: false,
|
|
193
|
+
empty: false,
|
|
194
|
+
}
|
|
195
|
+
},
|
|
196
|
+
mounted() {
|
|
197
|
+
this.init()
|
|
198
|
+
},
|
|
199
|
+
|
|
200
|
+
methods: {
|
|
201
|
+
async init() {
|
|
202
|
+
try {
|
|
203
|
+
// Init Silex server path
|
|
204
|
+
// Go up one level because of the language prefix
|
|
205
|
+
setServerUrl(window.location.origin)
|
|
206
|
+
await this.getConnectors()
|
|
207
|
+
} catch (error) {
|
|
208
|
+
console.error(error)
|
|
209
|
+
this.loading = false
|
|
210
|
+
this.error = ` - ${error.message}`
|
|
211
|
+
this.message = ''
|
|
212
|
+
}
|
|
213
|
+
},
|
|
214
|
+
|
|
215
|
+
getIcon(connector) {
|
|
216
|
+
return decodeURIComponent(connector.icon.split(',').slice(1).join(','))
|
|
217
|
+
},
|
|
218
|
+
|
|
219
|
+
getHref(connector) {
|
|
220
|
+
console.log(connector, connector.oauthUrl)
|
|
221
|
+
return connector.oauthUrl
|
|
222
|
+
},
|
|
223
|
+
|
|
224
|
+
getConnectorStyle(connector) {
|
|
225
|
+
return {
|
|
226
|
+
backgroundImage: `url(${connector.icon})`,
|
|
227
|
+
//color: connector.color,
|
|
228
|
+
//backgroundColor: connector.background
|
|
229
|
+
}
|
|
230
|
+
},
|
|
231
|
+
|
|
232
|
+
async getConnectors() {
|
|
233
|
+
try {
|
|
234
|
+
this.loading = true
|
|
235
|
+
const connectors = await connectorList({ type: ConnectorType.STORAGE })
|
|
236
|
+
this.connectors = connectors
|
|
237
|
+
this.loading = false
|
|
238
|
+
} catch (error) {
|
|
239
|
+
this.loading = false
|
|
240
|
+
console.error(error)
|
|
241
|
+
this.error = ` - ${error.message}`
|
|
242
|
+
this.message = ''
|
|
243
|
+
}
|
|
244
|
+
},
|
|
245
|
+
openLogin() {}
|
|
246
|
+
},
|
|
247
|
+
};
|
|
248
|
+
// Prepare elements for vue
|
|
249
|
+
document.querySelectorAll('[v-text], [v-html]')
|
|
250
|
+
.forEach(el => el.innerText = '')
|
|
251
|
+
|
|
252
|
+
document.querySelectorAll('[data-remove-href]')
|
|
253
|
+
.forEach(el => {
|
|
254
|
+
el.removeAttribute('href')
|
|
255
|
+
el.removeAttribute('data-remove-href')
|
|
256
|
+
})
|
|
257
|
+
|
|
258
|
+
|
|
259
|
+
// Create the app
|
|
260
|
+
const app = createApp(App);
|
|
261
|
+
|
|
262
|
+
// Mount the app
|
|
263
|
+
app.mount('.app');
|
|
264
|
+
|
|
265
|
+
|
|
266
|
+
// Remove loading
|
|
267
|
+
setTimeout(() => {
|
|
268
|
+
document.querySelector('.before-js').classList.add('after-js')
|
|
269
|
+
}, 100)
|
|
270
|
+
|
|
271
|
+
</script>
|
|
272
|
+
|
|
273
|
+
<title>Silex Dashboard</title>
|
|
274
|
+
<link rel="icon" href="/assets/favicon-32x32.png" />
|
|
275
|
+
<meta name="og:title" property="og:title" content="Silex Dashboard"/>
|
|
276
|
+
<link href="https://fonts.googleapis.com" rel="preconnect" ><link href="https://fonts.gstatic.com" rel="preconnect" crossorigin ><link href="https://fonts.googleapis.com/css?family=Ubuntu&display=swap" rel="stylesheet" ></head>
|
|
277
|
+
<body id="i2hcfw" class="body app before-js"><A id="ixzhcr" href="/" class="button button-bar__item--secondary"></A><div id="imawg3" class="bg-silex-purpel"><div id="imgx81"><div id="iikf0s" class="box box_login"><div id="ie0dxn" class="text-centered"><img id="ior0hl" src="/assets/logo-silex.svg"/><P id="it2175" class="subtitle-16">Please login to continue<br/></P></div><H3 id="iqc1xf" class="margin-top">Recommended</H3><div id="in62y2"><DIV id="isqe61"><A id="i44y9w" href="https://" class="connector__card"><div id="io3lid" class="button-bar__item__icon"></div><div id="i87asw" class="connector__description">Login with <span href="" id="i0tt68">Name</span><br/></div></A></DIV></div><DETAILS id="ihn6fj"><SUMMARY id="i8w75b" class="margin-30">Advanced</SUMMARY><div id="igp4xl"><DIV id="ibi9qh"><A href="https://" class="connector__card"><div class="button-bar__item__icon"></div><div class="connector__description">Login with <span href="">Name</span><br/></div></A></DIV></div></DETAILS><div id="i3cney" class="button-bar"><A id="iacshy" class="button big-button connector__card"><div id="iiwn36"><div class="button-bar__item__icon"></div><div id="if4gvb">Name<br/></div></div><div id="isndui">This connector is about blablabla<br/></div></A></div><div id="ijflxq" class="text-centered">Do you need help? Check <a href="http://localhost:6805/?id=dashboard">the documentation</a>, the video tutorials or just ask for help in the forums or poke us in the chat.<br/></div></div><div id="i9msnk" class="text-white top-space-20">Insert your text here</div><div id="i6akll" class="button button--tertiary text-centered"></div></div></div><FOOTER class="footer"><div id="iprzeh" class="footer__column"><H3 href="" class="footer__item">Insert your text here</H3><A href="#" class="footer__item">Insert your text here</A></div></FOOTER></body>
|
|
278
|
+
</html>
|
package/_site/css/connectors-9d0c9569a2ce8afaa4a30a0534b3d0597c761c7e0e5280dcbc966dc2b709e98e.css
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
* { box-sizing: border-box; } body {margin: 0;}.body{font-family:"Ubuntu", sans-serif;background-color:#f0f0f0;color:#2b1b63;}.subtitle-16{font-size:1rem;margin:0px 0px 20px 0px;}.subtitle-16.color--light{color:#636363;font-weight:700;}.button{font-size:0.8rem;padding:10px 20px 10px 20px;display:inline-block;border:2px solid #8873fe;transition:all 0.18s ease-out;font-weight:700;line-height:1.2rem;}.button.button--primary{background-color:#8873fe;color:white;}.button-bar{margin:20px 0px 20px 0px;display:flex;padding:30px 30px 30px 30px;align-items:center;justify-content:space-between;border-radius:4px 4px 4px 4px;background-color:#ffffff;}.button-bar.button-bar--full-width{justify-content:space-between;align-items:center;}.button-bar_item.button-bar__item--secondary{font-size:0.8rem;}.button.button--secondary{font-weight:400;color:#8873fe;border:2px solid #8873fe;}.footer{display:flex;margin:50px 0px 0px 0px;background-color:#ffffff;justify-content:space-evenly;padding:30px 30px 60px 30px;}.box{border-radius:4px 4px 4px 4px;background-color:#ffffff;}.box.flex-between{align-items:center;}.button--tertiary{background-color:transparent;font-weight:400;}.button:hover{color:#8873fe;border:2px solid #8873fe;}.button.button--secondary:hover{background-color:white;border:2px solid rgba(136,115,254,0.5);}#imgx81{min-height:100vh;display:flex;justify-content:center;align-items:center;flex-direction:column;}#in62y2{justify-content:center;}.big-button{border-radius:5px 5px 5px 5px;font-size:15px;margin:10px 10px 10px 10px;padding:15px 30px 15px 30px;font-weight:700;background-color:#ffffff;}#i9msnk{padding:10px;display:inline;}#i6akll{padding:10px;display:inline;}#ixzhcr{padding:10px;position:absolute;display:none;}.bg-silex-purpel{background-repeat:repeat-y;background-position:center top;background-attachment:scroll;background-size:contain;background-image:url(../assets/bg-purpel-silex.webp);}.text-centered{text-align:center;}.text-white{color:#ffffff;}.box.box_transp{background-color:rgba(255,255,255,0.5);}.top-space-20{margin:20px 0 0 0;}.button.button--tertiary{border:2px solid transparent;background-color:rgba(221,221,221,0.5);}.box_login{max-width:450px;width:100%;padding:60px 40px 60px 40px;}.button-bar__item--link.text-white{color:#ffffff;}.button.big-button{border:2px solid transparent;}.button.button--tertiary:hover{border:2px solid #8873fe;color:#8873fe;background-color:white;}.button-bar__item__icon{float:left;height:30px;margin:5px 5px 5px 5px;width:30px;background-repeat:no-repeat;background-position:center center;background-attachment:scroll;background-size:contain;background-image:none;}.button-bar__item--secondary{font-size:0.8rem;}.footer__column{display:flex;flex-direction:column;flex-grow:1;text-align:center;}.footer__item{padding:10px 10px 10px 10px;}.connector__card{align-items:center;margin:10px auto 10px auto;border:1px solid;border-radius:5px 5px 5px 5px;max-width:100%;display:flex;color:black;justify-content:center;padding:4px 0px 4px 0px;transition:all 0.25s ease;}#i3cney{width:100%;display:none;justify-content:center;}.connector__description{padding:5px 15px 5px 15px;}#ior0hl{color:black;}#igp4xl{justify-content:center;display:inline-block;width:100%;}#isqe61{display:inline-block;width:100%;padding:30px 0px 30px 0px;}.margin-top{margin:80px 0px 30px 0px;}.margin-30{margin:30px 0px 30px 0px;}.connector__card:link{text-decoration:none;color:black;border:1px solid;}.connector__card:hover{background-color:#8873fe;color:white;}#iqc1xf{display:none;}#it2175{margin:15px 0px 0px 0px;font-size:1rem;}#i8w75b{margin:10px 0px 10px 0px;font-size:0.95rem;font-weight:600;cursor:pointer;}#ijflxq{font-size:0.85rem;text-align:left;margin:30px 0px 0px 0px;}#iprzeh{min-height:100px;}#ibi9qh{display:inline-block;width:100%;padding:30px 0px 30px 0px;}
|
package/_site/css/connectors-a8ae93c40b7c738a4514e47046a029afdcf74bb28a7724287e1350afac4fa60f.css
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
* { box-sizing: border-box; } body {margin: 0;}.body{font-family:"Ubuntu", sans-serif;background-color:#f0f0f0;color:#2b1b63;}.subtitle-16{font-size:1rem;margin:0px 0px 20px 0px;}.subtitle-16.color--light{color:#636363;font-weight:700;}.button{font-size:0.8rem;padding:10px 20px 10px 20px;display:inline-block;border:2px solid #8873fe;transition:all 0.18s ease-out;font-weight:700;line-height:1.2rem;}.button.button--primary{background-color:#8873fe;color:white;}.button-bar{margin:20px 0px 20px 0px;display:flex;padding:30px 30px 30px 30px;align-items:center;justify-content:space-between;border-radius:4px 4px 4px 4px;background-color:#ffffff;}.button-bar.button-bar--full-width{justify-content:space-between;align-items:center;}.button-bar_item.button-bar__item--secondary{font-size:0.8rem;}.button.button--secondary{font-weight:400;color:#8873fe;border:2px solid #8873fe;}.footer{display:flex;margin:50px 0px 0px 0px;background-color:#ffffff;justify-content:space-evenly;padding:30px 30px 60px 30px;}.box{border-radius:4px 4px 4px 4px;background-color:#ffffff;}.box.flex-between{align-items:center;}.button--tertiary{background-color:transparent;font-weight:400;}.button:hover{color:#8873fe;border:2px solid #8873fe;}.button.button--secondary:hover{background-color:white;border:2px solid rgba(136,115,254,0.5);}#imgx81{min-height:100vh;display:flex;justify-content:center;align-items:center;flex-direction:column;}#in62y2{justify-content:center;}.big-button{border-radius:5px 5px 5px 5px;font-size:15px;margin:10px 10px 10px 10px;padding:15px 30px 15px 30px;font-weight:700;background-color:#ffffff;}#i9msnk{padding:10px;display:inline;}#i6akll{padding:10px;display:inline;}#ixzhcr{padding:10px;position:absolute;display:none;}.bg-silex-purpel{background-repeat:repeat-y;background-position:center top;background-attachment:scroll;background-size:contain;background-image:url(/assets/../assets/bg-purpel-silex.webp);}.text-centered{text-align:center;}.text-white{color:#ffffff;}.box.box_transp{background-color:rgba(255,255,255,0.5);}.top-space-20{margin:20px 0 0 0;}.button.button--tertiary{border:2px solid transparent;background-color:rgba(221,221,221,0.5);}.box_login{max-width:450px;width:100%;padding:60px 40px 60px 40px;}.button-bar__item--link.text-white{color:#ffffff;}.button.big-button{border:2px solid transparent;}.button.button--tertiary:hover{border:2px solid #8873fe;color:#8873fe;background-color:white;}.button-bar__item__icon{float:left;height:30px;margin:5px 5px 5px 5px;width:30px;background-repeat:no-repeat;background-position:center center;background-attachment:scroll;background-size:contain;background-image:none;}.button-bar__item--secondary{font-size:0.8rem;}.footer__column{display:flex;flex-direction:column;flex-grow:1;text-align:center;}.footer__item{padding:10px 10px 10px 10px;}.connector__card{align-items:center;margin:10px auto 10px auto;border:1px solid;border-radius:5px 5px 5px 5px;max-width:100%;display:flex;color:black;justify-content:center;padding:4px 0px 4px 0px;transition:all 0.25s ease;}#i3cney{width:100%;display:none;justify-content:center;}.connector__description{padding:5px 15px 5px 15px;}#ior0hl{color:black;}#igp4xl{justify-content:center;display:inline-block;width:100%;}#isqe61{display:inline-block;width:100%;padding:30px 0px 30px 0px;}.margin-top{margin:80px 0px 30px 0px;}.margin-30{margin:30px 0px 30px 0px;}.connector__card:link{text-decoration:none;color:black;border:1px solid;}.connector__card:hover{background-color:#8873fe;color:white;}#iqc1xf{display:none;}#it2175{margin:15px 0px 0px 0px;font-size:1rem;}#i8w75b{margin:10px 0px 10px 0px;font-size:0.95rem;font-weight:600;cursor:pointer;}#ijflxq{font-size:0.85rem;text-align:left;margin:30px 0px 0px 0px;}#iprzeh{min-height:100px;}#ibi9qh{display:inline-block;width:100%;padding:30px 0px 30px 0px;}
|
package/_site/css/websites-e6d63d0512032a2909a7f648cecfad311842ecba7bd03f94afc8639998e606f0.css
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
* { box-sizing: border-box; } body {margin: 0;}.nav__item{margin:0px 10px 0px 10px;font-size:0.8rem;padding:24px 0px 24px 0px;color:#4a4a4a;}.body{font-family:"Ubuntu", sans-serif;background-color:#f0f0f0;color:#2b1b63;}.menu-bar{display:flex;align-items:center;justify-content:space-between;background-color:#ffffff;height:94px;padding:0px 100px 0px 100px;width:100%;}.padding-normal{padding:0px 24px 0px 24px;}#i9jq{display:flex;}.nav{width:100%;margin:0px 20px 0px 20px;}.subtitle-16{font-size:1rem;margin:0px 0px 20px 0px;}.subtitle-16.color--light{color:#636363;font-weight:700;}.button{font-size:0.8rem;padding:10px 20px 10px 20px;display:inline-block;border:2px solid #8873fe;transition:all 0.18s ease-out;font-weight:700;line-height:1.2rem;}.button.button--primary{background-color:#8873fe;color:white;}.button-bar{margin:20px 0px 20px 0px;display:flex;padding:30px 30px 30px 30px;align-items:center;justify-content:space-between;border-radius:4px 4px 4px 4px;background-color:#ffffff;}#ibsgw{position:relative;top:3px;}.button-bar.button-bar--full-width{justify-content:space-between;align-items:center;}.button-bar_item.button-bar__item--secondary{font-size:0.8rem;}.button.button--secondary{font-weight:400;color:#8873fe;border:2px solid #8873fe;}.rounded{border-radius:4px 4px 4px 4px;}.footer{display:flex;margin:50px 0px 0px 0px;background-color:#ffffff;justify-content:space-evenly;padding:30px 30px 60px 30px;}.skeleton-text.skeleton{background-color:#dddddd;color:transparent;opacity:0.31;border-radius:5px 5px 5px 5px;}.skeleton.skeleton-button{color:transparent;opacity:0.31;background-color:#dddddd;border-radius:5px 5px 5px 5px;width:140px;}.skeleton-anim{position:relative;}.nav__item.active{color:black;}.margin-20{margin:20px 0px 20px 0px;}#i0ro3{display:none;}.loading__item.loaded-true{display:none;}.flex-no-shrink{flex-shrink:0;}.form{padding:10px 0px 10px 0px;border-radius:5px 5px 5px 5px;}#i1nmbc{flex-shrink:0;}.input{padding:10px 10px 10px 10px;background-color:transparent;border:2px solid #8873fe;margin:10px 0px 10px 0px;border-radius:4px 4px 4px 4px;}.full-width{width:100%;}.v-space{margin:10px 0px 10px 0px;}.box{border-radius:4px 4px 4px 4px;background-color:#ffffff;}.box__header{margin:0px 0px 0px 0px;padding:10px 0px 10px 0px;font-weight:700;font-size:1.625rem;color:rgba(43,27,99,0.5);}.box.flex-between{align-items:center;}.flex-between{display:flex;align-items:center;justify-content:space-between;}.button--tertiary{background-color:transparent;font-weight:400;}.icon-font{font-size:1.5rem;line-height:1px;margin:0px 2px 0px 2px;}.lang__item{margin:0px 5px 0px 5px;}.top-space-40{margin:40px 0 0 0;}.nav__logo{height:50px;}.user-icon__image{width:100%;height:100%;}.user__wrapper{border:1px solid white;display:flex;flex-direction:column;justify-content:center;align-items:center;margin:0 0 0 20px;}.right-space-20{margin:0px 20px 0px 0px;}#iksw4d{padding:10px;}.button:hover{color:#8873fe;border:2px solid #8873fe;}.button.button--secondary:hover{background-color:white;border:2px solid rgba(136,115,254,0.5);}.user-icon__wrapper{border:1px solid #f0f0f0;background-color:#f0f0f0;border-radius:50% 50% 50% 50%;width:40px;height:40px;overflow:hidden hidden;}.title-40{margin:0 0 10px 0;font-size:2.5rem;font-weight:700;}.bg-silex-purpel{background-repeat:repeat-y;background-position:center top;background-attachment:scroll;background-size:contain;background-image:url(../assets/bg-purpel-silex.webp);}.section-top{max-width:1200px;padding:40px 30px 40px 30px;height:226px;display:flex;flex-direction:column;justify-content:center;margin:0px auto 0px auto;}.text-centered{text-align:center;}.box-message{background-color:rgba(43,27,99,0.3);border-radius:4px 4px 4px 4px;padding:20px 30px 20px 30px;margin:10px 0px 10px 0px;}.text-white{color:#ffffff;}.bold{font-weight:800;}.button-bar__item--link{background-color:transparent;border:0px solid black;font-size:0.8rem;color:#8873fe;}.padding-30{padding:30px 30px 30px 30px;}.right-space-40{margin:0 40px 0 0;}.title-26{font-size:1.625rem;margin:10px 0px 10px 0px;}.empty-image{min-height:500px;background-image:url(../assets/empty-projects-sos.gif);background-repeat:no-repeat;background-position:center center;background-attachment:scroll;background-size:contain;}.padding-50-30{padding:50px 30px 50px 30px;}.box.box_transp{background-color:rgba(255,255,255,0.5);}.button.button--tertiary{border:2px solid transparent;background-color:rgba(221,221,221,0.5);}.button-bar__item--link.text-white{color:#ffffff;}.button.big-button{border:2px solid transparent;}.color-2B1B63-80{color:rgba(43,27,99,0.8);}.button.button--tertiary:hover{border:2px solid #8873fe;color:#8873fe;background-color:white;}.box-message-text{margin:0px 0 0 0;font-weight:300;}.website-max-width{max-width:1200px;}.margin-80{margin:80px auto 80px auto;}.button-bar__item--secondary{font-size:0.8rem;}.skeleton{line-height:1.1rem;}#isucae{min-height:100px;}.footer__column{display:flex;flex-direction:column;flex-grow:1;text-align:center;}.footer__item{padding:10px 10px 10px 10px;}#igsxoc{position:relative;top:3px;}.box--centered{display:flex;flex-direction:column;align-items:center;}.button-bar__title:hover{color:#8873fe;}.button-bar__item--icon{margin:0px 0 0 0;padding:5px 5px 5px 5px;}.nav__item:hover{text-decoration:none;color:#8873fe;}.nav_item--active:first-child{color:#8873fe;}#ilgsqu{min-height:100px;}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<html lang="">
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="UTF-8">
|
|
5
|
-
<link rel="stylesheet" href="/css/connectors-
|
|
5
|
+
<link rel="stylesheet" href="/css/connectors-a8ae93c40b7c738a4514e47046a029afdcf74bb28a7724287e1350afac4fa60f.css" />
|
|
6
6
|
<!-- font google -->
|
|
7
7
|
<link rel="preconnect" href="https://fonts.gstatic.com" />
|
|
8
8
|
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;700&display=swap" rel="stylesheet">
|
|
@@ -274,9 +274,9 @@ setTimeout(() => {
|
|
|
274
274
|
<link rel="icon" href="/assets/favicon-32x32.png" />
|
|
275
275
|
<meta name="og:title" property="og:title" content="Silex Dashboard"/>
|
|
276
276
|
<link href="https://fonts.googleapis.com" rel="preconnect" ><link href="https://fonts.gstatic.com" rel="preconnect" crossorigin ><link href="https://fonts.googleapis.com/css?family=Ubuntu&display=swap" rel="stylesheet" ></head>
|
|
277
|
-
<body id="i2hcfw" class="body app before-js"><A id="ixzhcr" href="/" class="button button-bar__item--secondary">< Back</A><div id="imawg3" class="bg-silex-purpel"><div id="imgx81" class=""><div id="iikf0s" class="box box_login"><div id="ie0dxn" class="text-centered"><img id="ior0hl" src="/assets/logo-silex.svg"/><p id="it2175" class="subtitle-16">Please login to continue</p></div><h3 id="iqc1xf" class="margin-top">Recommended and free</h3><div id="in62y2"><div id="isqe61" class="" v-for="(connector, index) in connectors.slice(0, 1)"><a id="i44y9w" href="https://" class="connector__card" :href="getHref(connector)" data-remove-href="true"><div id="io3lid" class="button-bar__item__icon" :style="getConnectorStyle(connector)"></div><div id="i87asw" class="connector__description" v-text="connector.displayName">Login with <span href="" id="i0tt68">Name</span><br/></div></a></div></div><DETAILS id="ihn6fj"><summary id="i8w75b" class="margin-30">Advanced users</summary><div class="" v-for="(connector, index) in connectors.slice(1)"><a href="
|
|
277
|
+
<body id="i2hcfw" class="body app before-js"><A id="ixzhcr" href="/" class="button button-bar__item--secondary">< Back</A><div id="imawg3" class="bg-silex-purpel"><div id="imgx81" style="min-height:100vh;display:flex;justify-content:center;align-items:center;flex-direction:column;" class=""><div id="iikf0s" class="box box_login"><div id="ie0dxn" class="text-centered"><img id="ior0hl" src="/assets/logo-silex.svg"/><p id="it2175" style="margin:15px 0px 0px 0px;font-size:1rem;" class="subtitle-16">Please login to continue</p></div><h3 id="iqc1xf" style="display:none;" class="margin-top">Recommended and free</h3><div id="in62y2"><div id="isqe61" style="display:inline-block;width:100%;padding:30px 0px 30px 0px;" class="" v-for="(connector, index) in connectors.slice(0, 1)"><a id="i44y9w" href="https://" class="connector__card" :href="getHref(connector)" data-remove-href="true"><div id="io3lid" class="button-bar__item__icon" :style="getConnectorStyle(connector)"></div><div id="i87asw" class="connector__description" v-text="connector.displayName">Login with <span href="" id="i0tt68">Name</span><br/></div></a></div></div><DETAILS id="ihn6fj"><summary id="i8w75b" style="margin:10px 0px 10px 0px;font-size:0.95rem;font-weight:600;cursor:pointer;" class="margin-30">Advanced users</summary><div style="display:inline-block;width:100%;padding:30px 0px 30px 0px;" id="ibi9qh" class="" v-for="(connector, index) in connectors.slice(1)"><a href="https://" class="connector__card" :href="getHref(connector)" data-remove-href="true"><div class="button-bar__item__icon" :style="getConnectorStyle(connector)"></div><div class="connector__description" v-text="connector.displayName">Login with <span href="">Name</span><br/></div></a></div></DETAILS><div id="i3cney" class="button-bar"><a id="iacshy" class="button big-button connector__card" v-if="!loading" :key="index" :style="{ backgroundColor: connector.background, color: connector.color }" v-for="(connector, index) in connectors" v-on-click="openLogin(connector)"><div id="iiwn36"><div class="button-bar__item__icon" :style="`background: url('${connector.icon}'); background-repeat: no-repeat; background-size: contain;`"></div><div id="if4gvb" class="" v-text="connector.displayName">Name<br/></div></div><div id="isndui">This connector is about blablabla<br/></div></a></div><div id="ijflxq" style="font-size:0.85rem;text-align:left;margin:30px 0px 0px 0px;" class="text-centered">Do you need help? Check <a href="https://docs.silex.me/en/user/login" target="_blank">the documentation</a>. <br><br> By logging in, you agree to the <a href="https://docs.silex.me/en/terms" target="_blank">terms of use</a> and the <a href="https://docs.silex.me/en/security" target="_blank">privacy policy</a>.</div></div><div id="i9msnk" style="padding:10px;display:inline;" class="text-white top-space-20" v-if="error" v-text="message" :test="message">Insert your text here</div><div id="i6akll" style="padding:10px;display:inline;" class="button button--tertiary text-centered" v-if="error" v-on:click="logout()">Logout</div></div></div><FOOTER class="footer">
|
|
278
278
|
|
|
279
|
-
<div id="iprzeh" class="footer__column"><h3 href="" class="footer__item">Social & community</h3>
|
|
279
|
+
<div id="iprzeh" style="min-height:100px;" class="footer__column"><h3 href="" class="footer__item">Social & community</h3>
|
|
280
280
|
|
|
281
281
|
<a href="https://www.silex.me/" class="footer__item" target="_blank">About Silex, official website</a>
|
|
282
282
|
<a href="mailto:contact+silex-dashboard-footer@silex.me" class="footer__item" target="">Email the team</a>
|
|
@@ -287,14 +287,14 @@ setTimeout(() => {
|
|
|
287
287
|
<a href="https://events.silex.me/" class="footer__item" target="_blank">Meetups/ Events</a>
|
|
288
288
|
<a href="https://short.silex.me/mastodon" class="footer__item" target="_blank">Mastodon</a>
|
|
289
289
|
<a href="https://short.silex.me/chat" class="footer__item" target="">Chat</a></div>
|
|
290
|
-
<div id="iprzeh" class="footer__column"><h3 href="" class="footer__item">Resources</h3>
|
|
290
|
+
<div id="iprzeh" style="min-height:100px;" class="footer__column"><h3 href="" class="footer__item">Resources</h3>
|
|
291
291
|
|
|
292
292
|
<a href="https://short.silex.me/code" class="footer__item" target="_blank">Source code</a>
|
|
293
293
|
<a href="http://docs.silex.me/" class="footer__item" target="_blank">Documentation</a>
|
|
294
294
|
<a href="https://video.silex.me/my-library/video-playlists" class="footer__item" target="_blank">Videos</a>
|
|
295
295
|
<a href="https://short.silex.me/roadmap" class="footer__item" target="_blank">Roadmap</a>
|
|
296
296
|
<a href="https://short.silex.me/contribute" class="footer__item" target="_blank">Contribute</a></div>
|
|
297
|
-
<div id="iprzeh" class="footer__column"><h3 href="" class="footer__item">Articles and reviews</h3>
|
|
297
|
+
<div id="iprzeh" style="min-height:100px;" class="footer__column"><h3 href="" class="footer__item">Articles and reviews</h3>
|
|
298
298
|
|
|
299
299
|
<a href="https://short.silex.me/alternatives" class="footer__item" target="_blank">Silex alternatives</a>
|
|
300
300
|
<a href="https://short.silex.me/reviews" class="footer__item" target="_blank">Silex reviews</a>
|
package/_site/en/index.html
CHANGED
|
@@ -366,9 +366,9 @@ window.addEventListener('load', function() {
|
|
|
366
366
|
<a id="iels" href="https://mail-list.silexlabs.org/subscription/cemnfkaVrK?locale=en-US&source=silex-dashboard" class="nav__item uppercase fx-flash nav_item--active" target="_blank">News</a></NAV>
|
|
367
367
|
|
|
368
368
|
<div id="i2red7" class="lang"><a href="/en" id="iciz" class="lang__item nav__item uppercase">EN</a></div>
|
|
369
|
-
<div id="i2red7" class="lang"><a href="/fr" id="iciz" class="lang__item nav__item uppercase">FR</a></div><div id="i24ew" class="user__wrapper pointer" v-if="user" v-on:click="showMenu = !showMenu"><div id="i5xsbd" class="user-icon__wrapper" v-if="user" v-show="!showMenu || user.storage.disableLogout"><div id="i5wlbq" class="user-icon__image" v-if="user" v-show="!showMenu || user.storage.disableLogout" :style="{ backgroundImage: `url('${user?.picture}')`, backgroundRepeat: 'no-repeat', backgroundSize: 'contain', }"></div></div><div id="ic9eoa" class="" v-show="showMenu && !user.storage.disableLogout"><div id="iksw4d" class="button button--tertiary text-centered" v-on:click="logout()">Logout</div></div></div></HEADER><HEADER id="iy8ax3" class="bg-silex-purpel"><div id="iisz8f" class="section-top text-centered text-white"><h1 id="ic31o" class="title-40" v-if="!empty">Welcome back!</h1><p id="iyex8" class="subtitle-16" v-if="!empty">Dive into your projects or kickstart a new one</p><h1 id="i4ybc" class="title-40" v-if="empty">Welcome, let's get started</h1><p id="iino6r" class="subtitle-16" v-if="empty">Create your first project, click on "Create a website"</p></div></HEADER><MAIN id="iz63r" class="padding-normal main-min-height website-max-width margin-80"><section id="iqmx38" class="" v-if="empty"></section><div id="ickx4" class="margin-20" v-if="!empty"><button id="ic92g" class="button button--primary rounded top-space-40 fx-scale-round" v-if="!showCreationForm" v-on:click="showCreationForm = !showCreationForm"><span id="igsxoc" class="icon-font">+</span> <span id="ixu14" class="">Create website</span></button><div id="i0ro3" class="button button--secondary rounded">Import</div></div><div id="ihwwxz" class="box top-space-40 padding-30 box_transp" v-if="showCreationForm"><h3 id="i3gd1b" class="box__header text-centered">Create a new website</h3><form method="get" id="i50acf" class="form" v-on:submit.prevent="createWebsite"><div id="igtg1t" class="v-space"><label id="i1nmbc" class="v-space bold color-2B1B63-80">Website name</label><input type="text" id="ij5iwh" placeholder="My project website" class="input full-width" v-model="newWebsiteName"></input></div><div id="ie0xes"><button type="submit" id="i021na" class="button rounded button--primary right-space-20 fx-scale-round">Create</button><button type="reset" class="button rounded button--secondary fx-scale-round" v-on:click="showCreationForm = !showCreationForm" v-if="!empty">Cancel</button></div></form></div><div id="if80m" class="margin-20"><section id="idgvg" class="button-bar loaded__item" v-if="!loading" v-for="(website, index) in websites" :key="index"><h3 id="i69a7" class="right-space-40 color-2B1B63-80 uppercase pointer fx-flash full-width button-bar__title underline" v-on:click="openEditor(website.websiteId, 'en')" v-text="website.name || website.id">My first website</h3><p id="i65hn" class="button-bar__item--secondary flex-no-shrink right-space-40" v-text="'Updated ' + new Date(website.updatedAt).toLocaleDateString(undefined, { day: 'numeric', month: 'long', year: 'numeric' })">Updated 1h ago by lexoyo</p><p id="i64qa" class="button-bar__item--secondary flex-no-shrink right-space-40" v-text="'Created ' + new Date(website.createdAt).toLocaleDateString(undefined, { day: 'numeric', month: 'long', year: 'numeric' })">Created 2023-02-16 by lexoyo</p><div id="i3b4tr" class="flex-no-shrink"><button id="ifyf6p" title="Edit" class="button-bar__item--link pointer fx-scale fx-flash button-bar__item--icon" v-on:click="openEditor(website.websiteId, 'en')"><svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 448 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path fill="#8873fe" d="M368 80h32v32H368V80zM352 32c-17.7 0-32 14.3-32 32H128c0-17.7-14.3-32-32-32H32C14.3 32 0 46.3 0 64v64c0 17.7 14.3 32 32 32V352c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32H96c17.7 0 32-14.3 32-32H320c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32V384c0-17.7-14.3-32-32-32V160c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32H352zM96 160c17.7 0 32-14.3 32-32H320c0 17.7 14.3 32 32 32V352c-17.7 0-32 14.3-32 32H128c0-17.7-14.3-32-32-32V160zM48 400H80v32H48V400zm320 32V400h32v32H368zM48 112V80H80v32H48z"/></svg></button><button id="ihf6ew" title="Rename" class="button-bar__item--link pointer fx-scale fx-flash button-bar__item--icon" v-on:click="renameWebsite(website.websiteId, 'en')"><svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 512 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path fill="#8873fe" d="M471.6 21.7c-21.9-21.9-57.3-21.9-79.2 0L362.3 51.7l97.9 97.9 30.1-30.1c21.9-21.9 21.9-57.3 0-79.2L471.6 21.7zm-299.2 220c-6.1 6.1-10.8 13.6-13.5 21.9l-29.6 88.8c-2.9 8.6-.6 18.1 5.8 24.6s15.9 8.7 24.6 5.8l88.8-29.6c8.2-2.7 15.7-7.4 21.9-13.5L437.7 172.3 339.7 74.3 172.4 241.7zM96 64C43 64 0 107 0 160V416c0 53 43 96 96 96H352c53 0 96-43 96-96V320c0-17.7-14.3-32-32-32s-32 14.3-32 32v96c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H96z"/></svg></button><button id="iol4h" title="Duplicate" class="button-bar__item--link pointer fx-flash fx-scale button-bar__item--icon" v-on:click="duplicateWebsite(website.websiteId, 'en')"><svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 448 512"><path fill="#8873fe" d="M384 336H192c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16l140.1 0L400 115.9V320c0 8.8-7.2 16-16 16zM192 384H384c35.3 0 64-28.7 64-64V115.9c0-12.7-5.1-24.9-14.1-33.9L366.1 14.1c-9-9-21.2-14.1-33.9-14.1H192c-35.3 0-64 28.7-64 64V320c0 35.3 28.7 64 64 64zM64 128c-35.3 0-64 28.7-64 64V448c0 35.3 28.7 64 64 64H256c35.3 0 64-28.7 64-64V416H272v32c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16V192c0-8.8 7.2-16 16-16H96V128H64z"/></svg></button><button id="it5ia" class="button-bar__item--link pointer fx-flash fx-scale" title="Delete" v-on:click="deleteWebsite(website.websiteId)">X</button></div></section><section id="i1fjn" class="button-bar loading__item skeleton-anim skeleton-wrapper" v-if="loading"><H3 id="iwu6a" class="skeleton-text skeleton right-space-40">My first websiteMy first websiteMy first websiteMy first</H3><P id="i26fn" class="button-bar__item--secondary skeleton-text skeleton right-space-40">Updated 1h ago by lexoyo</P><P id="iywbk" class="button-bar__item--secondary skeleton-text skeleton right-space-40">Created 2023-02-16 by lexoyo</P><div id="ixz6c" class="skeleton skeleton-button">Edit</div></section><section id="iwxxo5" class="button-bar loading__item skeleton-anim skeleton-wrapper" v-if="loading"><H3 id="inmp3" class="skeleton-text skeleton right-space-40">My first websiteMy first websiteMy first websiteMy first</H3><P id="icjz8" class="button-bar__item--secondary skeleton-text skeleton right-space-40">Updated 1h ago by lexoyo</P><P id="illbe" class="button-bar__item--secondary skeleton-text skeleton right-space-40">Created 2023-02-16 by lexoyo</P><div id="i9fx3l" class="skeleton skeleton-button">Edit</div></section><section id="isld3r" class="button-bar loading__item skeleton-anim skeleton-wrapper" v-if="loading"><H3 class="button-bar_item button-bar__item--main skeleton-text skeleton right-space-40">My first websiteMy first websiteMy first websiteMy first</H3><P class="button-bar_item button-bar__item--secondary skeleton-text skeleton right-space-40">Updated 1h ago by lexoyo</P><P class="button-bar_item button-bar__item--secondary skeleton-text skeleton right-space-40">Created 2023-02-16 by lexoyo</P><div id="i8oes3" class="button-bar_item skeleton skeleton-button">Edit</div></section></div><div id="ipccl7"><div id="i2fkm9" class="margin-20 empty-image" v-if="empty"></div><div id="i5ydxo" class="box padding-50-30 box--centered" v-if="empty"><p id="ikl1qu" class="text-centered title-26">Such emptyness...</p><h3 id="iwzrqi" class="text-centered title-26">Ready to start your journey?</h3><button id="i2x0l" class="button button--primary rounded top-space-40 fx-scale-round" v-on:click="showCreationForm = !showCreationForm" v-if="!showCreationForm"><span id="ibsgw" class="icon-font">+</span> <span id="itl2n8" class="">Create website</span></button></div></div><div id="i7ej6j" class="flex-between box-message text-white" v-if="error"><h3 id="iv0eyi" class="box-message-text" v-text="error">Insert your text here</h3><div id="i4656n" class="pointer button-bar__item--link text-white" v-on:click="error = null">Dismiss</div></div><div id="ilteie" class="flex-between box-message text-white" v-if="message"><h3 id="i2d31v" class="box-message-text" v-text="message">Insert your text here</h3><div id="i2urco" class="rounded pointer button-bar__item--link text-white" v-on:click="message = null">Dismiss</div></div></MAIN><FOOTER id="ilzpl" class="footer">
|
|
369
|
+
<div id="i2red7" class="lang"><a href="/fr" id="iciz" class="lang__item nav__item uppercase">FR</a></div><div id="i24ew" class="user__wrapper pointer" v-if="user" v-on:click="showMenu = !showMenu"><div id="i5xsbd" class="user-icon__wrapper" v-if="user" v-show="!showMenu || user.storage.disableLogout"><div id="i5wlbq" class="user-icon__image" v-if="user" v-show="!showMenu || user.storage.disableLogout" :style="{ backgroundImage: `url('${user?.picture}')`, backgroundRepeat: 'no-repeat', backgroundSize: 'contain', }"></div></div><div id="ic9eoa" class="" v-show="showMenu && !user.storage.disableLogout"><div id="iksw4d" style="padding:10px;" class="button button--tertiary text-centered" v-on:click="logout()">Logout</div></div></div></HEADER><HEADER id="iy8ax3" class="bg-silex-purpel"><div id="iisz8f" class="section-top text-centered text-white"><h1 id="ic31o" class="title-40" v-if="!empty">Welcome back!</h1><p id="iyex8" class="subtitle-16" v-if="!empty">Dive into your projects or kickstart a new one</p><h1 id="i4ybc" class="title-40" v-if="empty">Welcome, let's get started</h1><p id="iino6r" class="subtitle-16" v-if="empty">Create your first project, click on "Create a website"</p></div></HEADER><MAIN id="iz63r" class="padding-normal main-min-height website-max-width margin-80"><section id="iqmx38" class="" v-if="empty"></section><div id="ickx4" class="margin-20" v-if="!empty"><button id="ic92g" class="button button--primary rounded top-space-40 fx-scale-round" v-if="!showCreationForm" v-on:click="showCreationForm = !showCreationForm"><span id="igsxoc" class="icon-font">+</span> <span id="ixu14" class="">Create website</span></button><div id="i0ro3" class="button button--secondary rounded">Import</div></div><div id="ihwwxz" class="box top-space-40 padding-30 box_transp" v-if="showCreationForm"><h3 id="i3gd1b" class="box__header text-centered">Create a new website</h3><form method="get" id="i50acf" class="form" v-on:submit.prevent="createWebsite"><div id="igtg1t" class="v-space"><label id="i1nmbc" style="flex-shrink:0;" class="v-space bold color-2B1B63-80">Website name</label><input type="text" id="ij5iwh" placeholder="My project website" class="input full-width" v-model="newWebsiteName"></input></div><div id="ie0xes"><button type="submit" id="i021na" class="button rounded button--primary right-space-20 fx-scale-round">Create</button><button type="reset" class="button rounded button--secondary fx-scale-round" v-on:click="showCreationForm = !showCreationForm" v-if="!empty">Cancel</button></div></form></div><div id="if80m" class="margin-20"><section id="idgvg" class="button-bar loaded__item" v-if="!loading" v-for="(website, index) in websites" :key="index"><h3 id="i69a7" class="right-space-40 color-2B1B63-80 uppercase pointer fx-flash full-width button-bar__title underline" v-on:click="openEditor(website.websiteId, 'en')" v-text="website.name || website.id">My first website</h3><p id="i65hn" class="button-bar__item--secondary flex-no-shrink right-space-40" v-text="'Updated ' + new Date(website.updatedAt).toLocaleDateString(undefined, { day: 'numeric', month: 'long', year: 'numeric' })">Updated 1h ago by lexoyo</p><p id="i64qa" class="button-bar__item--secondary flex-no-shrink right-space-40" v-text="'Created ' + new Date(website.createdAt).toLocaleDateString(undefined, { day: 'numeric', month: 'long', year: 'numeric' })">Created 2023-02-16 by lexoyo</p><div id="i3b4tr" class="flex-no-shrink"><button id="ifyf6p" title="Edit" class="button-bar__item--link pointer fx-scale fx-flash button-bar__item--icon" v-on:click="openEditor(website.websiteId, 'en')"><svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 448 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path fill="#8873fe" d="M368 80h32v32H368V80zM352 32c-17.7 0-32 14.3-32 32H128c0-17.7-14.3-32-32-32H32C14.3 32 0 46.3 0 64v64c0 17.7 14.3 32 32 32V352c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32H96c17.7 0 32-14.3 32-32H320c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32V384c0-17.7-14.3-32-32-32V160c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32H352zM96 160c17.7 0 32-14.3 32-32H320c0 17.7 14.3 32 32 32V352c-17.7 0-32 14.3-32 32H128c0-17.7-14.3-32-32-32V160zM48 400H80v32H48V400zm320 32V400h32v32H368zM48 112V80H80v32H48z"/></svg></button><button id="ihf6ew" title="Rename" class="button-bar__item--link pointer fx-scale fx-flash button-bar__item--icon" v-on:click="renameWebsite(website.websiteId, 'en')"><svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 512 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path fill="#8873fe" d="M471.6 21.7c-21.9-21.9-57.3-21.9-79.2 0L362.3 51.7l97.9 97.9 30.1-30.1c21.9-21.9 21.9-57.3 0-79.2L471.6 21.7zm-299.2 220c-6.1 6.1-10.8 13.6-13.5 21.9l-29.6 88.8c-2.9 8.6-.6 18.1 5.8 24.6s15.9 8.7 24.6 5.8l88.8-29.6c8.2-2.7 15.7-7.4 21.9-13.5L437.7 172.3 339.7 74.3 172.4 241.7zM96 64C43 64 0 107 0 160V416c0 53 43 96 96 96H352c53 0 96-43 96-96V320c0-17.7-14.3-32-32-32s-32 14.3-32 32v96c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H96z"/></svg></button><button id="iol4h" title="Duplicate" class="button-bar__item--link pointer fx-flash fx-scale button-bar__item--icon" v-on:click="duplicateWebsite(website.websiteId, 'en')"><svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 448 512"><path fill="#8873fe" d="M384 336H192c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16l140.1 0L400 115.9V320c0 8.8-7.2 16-16 16zM192 384H384c35.3 0 64-28.7 64-64V115.9c0-12.7-5.1-24.9-14.1-33.9L366.1 14.1c-9-9-21.2-14.1-33.9-14.1H192c-35.3 0-64 28.7-64 64V320c0 35.3 28.7 64 64 64zM64 128c-35.3 0-64 28.7-64 64V448c0 35.3 28.7 64 64 64H256c35.3 0 64-28.7 64-64V416H272v32c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16V192c0-8.8 7.2-16 16-16H96V128H64z"/></svg></button><button id="it5ia" class="button-bar__item--link pointer fx-flash fx-scale" title="Delete" v-on:click="deleteWebsite(website.websiteId)">X</button></div></section><section id="i1fjn" class="button-bar loading__item skeleton-anim skeleton-wrapper" v-if="loading"><H3 id="iwu6a" class="skeleton-text skeleton right-space-40">My first websiteMy first websiteMy first websiteMy first</H3><P id="i26fn" class="button-bar__item--secondary skeleton-text skeleton right-space-40">Updated 1h ago by lexoyo</P><P id="iywbk" class="button-bar__item--secondary skeleton-text skeleton right-space-40">Created 2023-02-16 by lexoyo</P><div id="ixz6c" class="skeleton skeleton-button">Edit</div></section><section id="iwxxo5" class="button-bar loading__item skeleton-anim skeleton-wrapper" v-if="loading"><H3 id="inmp3" class="skeleton-text skeleton right-space-40">My first websiteMy first websiteMy first websiteMy first</H3><P id="icjz8" class="button-bar__item--secondary skeleton-text skeleton right-space-40">Updated 1h ago by lexoyo</P><P id="illbe" class="button-bar__item--secondary skeleton-text skeleton right-space-40">Created 2023-02-16 by lexoyo</P><div id="i9fx3l" class="skeleton skeleton-button">Edit</div></section><section id="isld3r" class="button-bar loading__item skeleton-anim skeleton-wrapper" v-if="loading"><H3 class="button-bar_item button-bar__item--main skeleton-text skeleton right-space-40">My first websiteMy first websiteMy first websiteMy first</H3><P class="button-bar_item button-bar__item--secondary skeleton-text skeleton right-space-40">Updated 1h ago by lexoyo</P><P class="button-bar_item button-bar__item--secondary skeleton-text skeleton right-space-40">Created 2023-02-16 by lexoyo</P><div id="i8oes3" class="button-bar_item skeleton skeleton-button">Edit</div></section></div><div id="ipccl7"><div id="i2fkm9" class="margin-20 empty-image" v-if="empty"></div><div id="i5ydxo" class="box padding-50-30 box--centered" v-if="empty"><p id="ikl1qu" class="text-centered title-26">Such emptyness...</p><h3 id="iwzrqi" class="text-centered title-26">Ready to start your journey?</h3><button id="i2x0l" class="button button--primary rounded top-space-40 fx-scale-round" v-on:click="showCreationForm = !showCreationForm" v-if="!showCreationForm"><span id="ibsgw" class="icon-font">+</span> <span id="itl2n8" class="">Create website</span></button></div></div><div id="i7ej6j" class="flex-between box-message text-white" v-if="error"><h3 id="iv0eyi" class="box-message-text" v-text="error">Insert your text here</h3><div id="i4656n" class="pointer button-bar__item--link text-white" v-on:click="error = null">Dismiss</div></div><div id="ilteie" class="flex-between box-message text-white" v-if="message"><h3 id="i2d31v" class="box-message-text" v-text="message">Insert your text here</h3><div id="i2urco" class="rounded pointer button-bar__item--link text-white" v-on:click="message = null">Dismiss</div></div></MAIN><FOOTER id="ilzpl" class="footer">
|
|
370
370
|
|
|
371
|
-
<div id="isucae" class="footer__column"><h3 id="ipa5zg" href="" class="footer__item">Social & community</h3>
|
|
371
|
+
<div id="isucae" style="min-height:100px;" class="footer__column"><h3 id="ipa5zg" href="" class="footer__item">Social & community</h3>
|
|
372
372
|
|
|
373
373
|
<a href="https://www.silex.me/" class="footer__item" target="_blank">About Silex, official website</a>
|
|
374
374
|
<a href="mailto:contact+silex-dashboard-footer@silex.me" class="footer__item" target="">Email the team</a>
|
|
@@ -379,14 +379,14 @@ window.addEventListener('load', function() {
|
|
|
379
379
|
<a href="https://events.silex.me/" class="footer__item" target="_blank">Meetups/ Events</a>
|
|
380
380
|
<a href="https://short.silex.me/mastodon" class="footer__item" target="_blank">Mastodon</a>
|
|
381
381
|
<a href="https://short.silex.me/chat" class="footer__item" target="">Chat</a></div>
|
|
382
|
-
<div id="isucae" class="footer__column"><h3 id="ipa5zg" href="" class="footer__item">Resources</h3>
|
|
382
|
+
<div id="isucae" style="min-height:100px;" class="footer__column"><h3 id="ipa5zg" href="" class="footer__item">Resources</h3>
|
|
383
383
|
|
|
384
384
|
<a href="https://short.silex.me/code" class="footer__item" target="_blank">Source code</a>
|
|
385
385
|
<a href="http://docs.silex.me/" class="footer__item" target="_blank">Documentation</a>
|
|
386
386
|
<a href="https://video.silex.me/my-library/video-playlists" class="footer__item" target="_blank">Videos</a>
|
|
387
387
|
<a href="https://short.silex.me/roadmap" class="footer__item" target="_blank">Roadmap</a>
|
|
388
388
|
<a href="https://short.silex.me/contribute" class="footer__item" target="_blank">Contribute</a></div>
|
|
389
|
-
<div id="isucae" class="footer__column"><h3 id="ipa5zg" href="" class="footer__item">Articles and reviews</h3>
|
|
389
|
+
<div id="isucae" style="min-height:100px;" class="footer__column"><h3 id="ipa5zg" href="" class="footer__item">Articles and reviews</h3>
|
|
390
390
|
|
|
391
391
|
<a href="https://short.silex.me/alternatives" class="footer__item" target="_blank">Silex alternatives</a>
|
|
392
392
|
<a href="https://short.silex.me/reviews" class="footer__item" target="_blank">Silex reviews</a>
|
|
@@ -401,7 +401,7 @@ window.addEventListener('load', function() {
|
|
|
401
401
|
<div class="lang"><a href="/en" class="lang__item nav__item uppercase">EN</a></div>
|
|
402
402
|
<div class="lang"><a href="/fr" class="lang__item nav__item uppercase">FR</a></div><div class="user__wrapper pointer"><div class="user-icon__wrapper"><div class="user-icon__image"></div></div><div><div id="ir10ge-2-2" class="button button--tertiary text-centered">Logout</div></div></div></HEADER><FOOTER class="footer">
|
|
403
403
|
|
|
404
|
-
<div id="ilgsqu" class="footer__column"><h3 href="" class="footer__item">Social & community</h3>
|
|
404
|
+
<div id="ilgsqu" style="min-height:100px;" class="footer__column"><h3 href="" class="footer__item">Social & community</h3>
|
|
405
405
|
|
|
406
406
|
<a href="https://www.silex.me/" class="footer__item" target="_blank">About Silex, official website</a>
|
|
407
407
|
<a href="mailto:contact+silex-dashboard-footer@silex.me" class="footer__item" target="">Email the team</a>
|
|
@@ -412,14 +412,14 @@ window.addEventListener('load', function() {
|
|
|
412
412
|
<a href="https://events.silex.me/" class="footer__item" target="_blank">Meetups/ Events</a>
|
|
413
413
|
<a href="https://short.silex.me/mastodon" class="footer__item" target="_blank">Mastodon</a>
|
|
414
414
|
<a href="https://short.silex.me/chat" class="footer__item" target="">Chat</a></div>
|
|
415
|
-
<div id="ilgsqu" class="footer__column"><h3 href="" class="footer__item">Resources</h3>
|
|
415
|
+
<div id="ilgsqu" style="min-height:100px;" class="footer__column"><h3 href="" class="footer__item">Resources</h3>
|
|
416
416
|
|
|
417
417
|
<a href="https://short.silex.me/code" class="footer__item" target="_blank">Source code</a>
|
|
418
418
|
<a href="http://docs.silex.me/" class="footer__item" target="_blank">Documentation</a>
|
|
419
419
|
<a href="https://video.silex.me/my-library/video-playlists" class="footer__item" target="_blank">Videos</a>
|
|
420
420
|
<a href="https://short.silex.me/roadmap" class="footer__item" target="_blank">Roadmap</a>
|
|
421
421
|
<a href="https://short.silex.me/contribute" class="footer__item" target="_blank">Contribute</a></div>
|
|
422
|
-
<div id="ilgsqu" class="footer__column"><h3 href="" class="footer__item">Articles and reviews</h3>
|
|
422
|
+
<div id="ilgsqu" style="min-height:100px;" class="footer__column"><h3 href="" class="footer__item">Articles and reviews</h3>
|
|
423
423
|
|
|
424
424
|
<a href="https://short.silex.me/alternatives" class="footer__item" target="_blank">Silex alternatives</a>
|
|
425
425
|
<a href="https://short.silex.me/reviews" class="footer__item" target="_blank">Silex reviews</a>
|
|
@@ -487,6 +487,39 @@ window.addEventListener('load', function() {
|
|
|
487
487
|
<a href="https://short.silex.me/contribute" class="footer__item" target="_blank">Contribute</a></div>
|
|
488
488
|
<div id="ilgsqu-2-2" class="footer__column"><h3 href="" class="footer__item">Articles and reviews</h3>
|
|
489
489
|
|
|
490
|
+
<a href="https://short.silex.me/alternatives" class="footer__item" target="_blank">Silex alternatives</a>
|
|
491
|
+
<a href="https://short.silex.me/reviews" class="footer__item" target="_blank">Silex reviews</a>
|
|
492
|
+
<a href="https://short.silex.me/press" class="footer__item" target="_blank">Silex in the press</a></div></FOOTER><HEADER class="menu-bar"><A href="/"><img src="/assets/favicon-32x32.png" id="iel80b-2" class="nav__logo"/></A><NAV id="in0357-2-2-2-2-2" class="nav">
|
|
493
|
+
|
|
494
|
+
<a href="/" class="nav__item uppercase fx-flash nav_item--active" target="">Sites</a>
|
|
495
|
+
<a href="http://docs.silex.me/" class="nav__item uppercase fx-flash nav_item--active" target="_blank">Docs</a>
|
|
496
|
+
<a href="https://www.silex.me/" class="nav__item uppercase fx-flash nav_item--active" target="_blank">About</a>
|
|
497
|
+
<a href="https://community.silex.me/" class="nav__item uppercase fx-flash nav_item--active" target="_blank">Community</a>
|
|
498
|
+
<a href="https://mail-list.silexlabs.org/subscription/cemnfkaVrK?locale=en-US&source=silex-dashboard" class="nav__item uppercase fx-flash nav_item--active" target="_blank">News</a></NAV>
|
|
499
|
+
|
|
500
|
+
<div class="lang"><a href="/en" class="lang__item nav__item uppercase">EN</a></div>
|
|
501
|
+
<div class="lang"><a href="/fr" class="lang__item nav__item uppercase">FR</a></div><div class="user__wrapper pointer"><div class="user-icon__wrapper"><div class="user-icon__image"></div></div><div><div id="ir10ge-2-2-2-2-2" class="button button--tertiary text-centered">Logout</div></div></div></HEADER><FOOTER class="footer">
|
|
502
|
+
|
|
503
|
+
<div id="ilgsqu-2-2-2" class="footer__column"><h3 href="" class="footer__item">Social & community</h3>
|
|
504
|
+
|
|
505
|
+
<a href="https://www.silex.me/" class="footer__item" target="_blank">About Silex, official website</a>
|
|
506
|
+
<a href="mailto:contact+silex-dashboard-footer@silex.me" class="footer__item" target="">Email the team</a>
|
|
507
|
+
<a href="https://short.silex.me/sponsors" class="footer__item" target="">Sponsors</a>
|
|
508
|
+
<a href="https://short.silex.me/donate" class="footer__item" target="">Donate</a>
|
|
509
|
+
<a href="https://short.silex.me/community" class="footer__item" target="_blank">Community forum</a>
|
|
510
|
+
<a href="https://news.silex.me/forms/nfrm_weLJnLY5" class="footer__item" target="_blank">Newsletter</a>
|
|
511
|
+
<a href="https://events.silex.me/" class="footer__item" target="_blank">Meetups/ Events</a>
|
|
512
|
+
<a href="https://short.silex.me/mastodon" class="footer__item" target="_blank">Mastodon</a>
|
|
513
|
+
<a href="https://short.silex.me/chat" class="footer__item" target="">Chat</a></div>
|
|
514
|
+
<div id="ilgsqu-2-2-2" class="footer__column"><h3 href="" class="footer__item">Resources</h3>
|
|
515
|
+
|
|
516
|
+
<a href="https://short.silex.me/code" class="footer__item" target="_blank">Source code</a>
|
|
517
|
+
<a href="http://docs.silex.me/" class="footer__item" target="_blank">Documentation</a>
|
|
518
|
+
<a href="https://video.silex.me/my-library/video-playlists" class="footer__item" target="_blank">Videos</a>
|
|
519
|
+
<a href="https://short.silex.me/roadmap" class="footer__item" target="_blank">Roadmap</a>
|
|
520
|
+
<a href="https://short.silex.me/contribute" class="footer__item" target="_blank">Contribute</a></div>
|
|
521
|
+
<div id="ilgsqu-2-2-2" class="footer__column"><h3 href="" class="footer__item">Articles and reviews</h3>
|
|
522
|
+
|
|
490
523
|
<a href="https://short.silex.me/alternatives" class="footer__item" target="_blank">Silex alternatives</a>
|
|
491
524
|
<a href="https://short.silex.me/reviews" class="footer__item" target="_blank">Silex reviews</a>
|
|
492
525
|
<a href="https://short.silex.me/press" class="footer__item" target="_blank">Silex in the press</a></div></FOOTER></body>
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<html lang="">
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="UTF-8">
|
|
5
|
-
<link rel="stylesheet" href="/css/connectors-
|
|
5
|
+
<link rel="stylesheet" href="/css/connectors-a8ae93c40b7c738a4514e47046a029afdcf74bb28a7724287e1350afac4fa60f.css" />
|
|
6
6
|
<!-- font google -->
|
|
7
7
|
<link rel="preconnect" href="https://fonts.gstatic.com" />
|
|
8
8
|
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;700&display=swap" rel="stylesheet">
|
|
@@ -274,9 +274,9 @@ setTimeout(() => {
|
|
|
274
274
|
<link rel="icon" href="/assets/favicon-32x32.png" />
|
|
275
275
|
<meta name="og:title" property="og:title" content="Silex Dashboard"/>
|
|
276
276
|
<link href="https://fonts.googleapis.com" rel="preconnect" ><link href="https://fonts.gstatic.com" rel="preconnect" crossorigin ><link href="https://fonts.googleapis.com/css?family=Ubuntu&display=swap" rel="stylesheet" ></head>
|
|
277
|
-
<body id="i2hcfw" class="body app before-js"><A id="ixzhcr" href="/" class="button button-bar__item--secondary">< Retour</A><div id="imawg3" class="bg-silex-purpel"><div id="imgx81" class=""><div id="iikf0s" class="box box_login"><div id="ie0dxn" class="text-centered"><img id="ior0hl" src="/assets/logo-silex.svg"/><p id="it2175" class="subtitle-16">Connectez-vous pour continuer</p></div><h3 id="iqc1xf" class="margin-top">Recommandé et gratuit</h3><div id="in62y2"><div id="isqe61" class="" v-for="(connector, index) in connectors.slice(0, 1)"><a id="i44y9w" href="https://" class="connector__card" :href="getHref(connector)" data-remove-href="true"><div id="io3lid" class="button-bar__item__icon" :style="getConnectorStyle(connector)"></div><div id="i87asw" class="connector__description" v-text="connector.displayName">Login with <span href="" id="i0tt68">Name</span><br/></div></a></div></div><DETAILS id="ihn6fj"><summary id="i8w75b" class="margin-30">Utilisateurs avancés</summary><div class="" v-for="(connector, index) in connectors.slice(1)"><a href="
|
|
277
|
+
<body id="i2hcfw" class="body app before-js"><A id="ixzhcr" href="/" class="button button-bar__item--secondary">< Retour</A><div id="imawg3" class="bg-silex-purpel"><div id="imgx81" style="min-height:100vh;display:flex;justify-content:center;align-items:center;flex-direction:column;" class=""><div id="iikf0s" class="box box_login"><div id="ie0dxn" class="text-centered"><img id="ior0hl" src="/assets/logo-silex.svg"/><p id="it2175" style="margin:15px 0px 0px 0px;font-size:1rem;" class="subtitle-16">Connectez-vous pour continuer</p></div><h3 id="iqc1xf" style="display:none;" class="margin-top">Recommandé et gratuit</h3><div id="in62y2"><div id="isqe61" style="display:inline-block;width:100%;padding:30px 0px 30px 0px;" class="" v-for="(connector, index) in connectors.slice(0, 1)"><a id="i44y9w" href="https://" class="connector__card" :href="getHref(connector)" data-remove-href="true"><div id="io3lid" class="button-bar__item__icon" :style="getConnectorStyle(connector)"></div><div id="i87asw" class="connector__description" v-text="connector.displayName">Login with <span href="" id="i0tt68">Name</span><br/></div></a></div></div><DETAILS id="ihn6fj"><summary id="i8w75b" style="margin:10px 0px 10px 0px;font-size:0.95rem;font-weight:600;cursor:pointer;" class="margin-30">Utilisateurs avancés</summary><div style="display:inline-block;width:100%;padding:30px 0px 30px 0px;" id="ibi9qh" class="" v-for="(connector, index) in connectors.slice(1)"><a href="https://" class="connector__card" :href="getHref(connector)" data-remove-href="true"><div class="button-bar__item__icon" :style="getConnectorStyle(connector)"></div><div class="connector__description" v-text="connector.displayName">Login with <span href="">Name</span><br/></div></a></div></DETAILS><div id="i3cney" class="button-bar"><a id="iacshy" class="button big-button connector__card" v-if="!loading" :key="index" :style="{ backgroundColor: connector.background, color: connector.color }" v-for="(connector, index) in connectors" v-on-click="openLogin(connector)"><div id="iiwn36"><div class="button-bar__item__icon" :style="`background: url('${connector.icon}'); background-repeat: no-repeat; background-size: contain;`"></div><div id="if4gvb" class="" v-text="connector.displayName">Name<br/></div></div><div id="isndui">This connector is about blablabla<br/></div></a></div><div id="ijflxq" style="font-size:0.85rem;text-align:left;margin:30px 0px 0px 0px;" class="text-centered">Avez-vous besoin d'aide ? Consultez <a href="https://docs.silex.me/fr/user/login" target="_blank">la documentation</a>. <br><br> En vous connectant, vous acceptez les <a href="https://docs.silex.me/fr/terms" target="_blank">conditions d'utilisation</a> et la <a href="https://docs.silex.me/fr/security" target="_blank">politique de confidentialité</a>.</div></div><div id="i9msnk" style="padding:10px;display:inline;" class="text-white top-space-20" v-if="error" v-text="message" :test="message">Insert your text here</div><div id="i6akll" style="padding:10px;display:inline;" class="button button--tertiary text-centered" v-if="error" v-on:click="logout()">Déconnexion</div></div></div><FOOTER class="footer">
|
|
278
278
|
|
|
279
|
-
<div id="iprzeh" class="footer__column"><h3 href="" class="footer__item">Social & communauté</h3>
|
|
279
|
+
<div id="iprzeh" style="min-height:100px;" class="footer__column"><h3 href="" class="footer__item">Social & communauté</h3>
|
|
280
280
|
|
|
281
281
|
<a href="https://www.silex.me/" class="footer__item" target="_blank">A propos de Silex, site officiel</a>
|
|
282
282
|
<a href="mailto:contact+silex-dashboard-footer@silex.me" class="footer__item" target="_blank">Email l'équipe</a>
|
|
@@ -287,14 +287,14 @@ setTimeout(() => {
|
|
|
287
287
|
<a href="https://events.silex.me/" class="footer__item" target="_blank">Meetups/ Evénements</a>
|
|
288
288
|
<a href="https://short.silex.me/mastodon" class="footer__item" target="_blank">Mastodon</a>
|
|
289
289
|
<a href="https://short.silex.me/chat" class="footer__item" target="_blank">Chat</a></div>
|
|
290
|
-
<div id="iprzeh" class="footer__column"><h3 href="" class="footer__item">Ressources</h3>
|
|
290
|
+
<div id="iprzeh" style="min-height:100px;" class="footer__column"><h3 href="" class="footer__item">Ressources</h3>
|
|
291
291
|
|
|
292
292
|
<a href="https://short.silex.me/code" class="footer__item" target="_blank">Code source</a>
|
|
293
293
|
<a href="http://docs.silex.me/" class="footer__item" target="_blank">Documentation</a>
|
|
294
294
|
<a href="https://video.silex.me/my-library/video-playlists" class="footer__item" target="_blank">Vidéos</a>
|
|
295
295
|
<a href="https://short.silex.me/roadmap" class="footer__item" target="_blank">Feuille de route</a>
|
|
296
296
|
<a href="https://short.silex.me/contribute" class="footer__item" target="_blank">Contribuer</a></div>
|
|
297
|
-
<div id="iprzeh" class="footer__column"><h3 href="" class="footer__item">Articles et revues</h3>
|
|
297
|
+
<div id="iprzeh" style="min-height:100px;" class="footer__column"><h3 href="" class="footer__item">Articles et revues</h3>
|
|
298
298
|
|
|
299
299
|
<a href="https://short.silex.me/alternatives_fr" class="footer__item" target="_blank">Alternatives à Silex</a>
|
|
300
300
|
<a href="https://short.silex.me/reviews_fr" class="footer__item" target="_blank">Revues de Silex</a>
|