-
🌐 admin_panel.phpWeb, 1.63 kB⬇
-
🌐 api.jsWeb, 3.06 kB⬇
-
🌐 api.phpWeb, 6.18 kB⬇
-
🌐 app.jsWeb, 58.50 kB⬇
-
🌐 base.cssWeb, 2.23 kB⬇
-
🌐 context.jsWeb, 8.71 kB⬇
-
🌐 conversation-index.jsWeb, 11.46 kB⬇
-
🌐 conversation.jsWeb, 9.87 kB⬇
-
🌐 conversations.jsWeb, 14.49 kB⬇
-
🌐 diction.jsWeb, 384 B⬇
-
🌐 document.jsWeb, 391 B⬇
-
🌐 dynamic.phpWeb, 430 B⬇
-
📷 favicon-lg.pngImage, 9.11 kB⬇
-
📷 favicon.pngImage, 3.12 kB⬇
-
🌐 index.phpWeb, 11.54 kB⬇
-
🌐 indexjs.jsWeb, 544 B⬇
-
🌐 login.phpWeb, 619 B⬇
-
🌐 manifest.jsonWeb, 256 B⬇
-
❓ manifest.webmanifestUnknown, 262 B⬇
-
🌐 memory.jsWeb, 407 B⬇
-
🌐 models.jsonWeb, 1.70 kB⬇
-
🌐 notebook-index.jsWeb, 527 B⬇
-
⚠️ php.iniOS File, 356 B⬇
-
🌐 storage.jsWeb, 12.57 kB⬇
-
🌐 style.cssWeb, 16.16 kB⬇
-
🌐 theme_dark.jsonWeb, 266 B⬇
-
🌐 theme_light.jsonWeb, 267 B⬇
-
🌐 users.jsWeb, 12.40 kB⬇
import App from './app.js';
import Users from './users.js';
import Storage from "./storage.js";
new Users();
if (!document.getElementById('login-form')) {
const storage = new Storage();
await storage.init();
new App(storage);
const tinAITitle = document.getElementById('id-title-tinai');
if (tinAITitle) {
tinAITitle.addEventListener('click', () => {
if (confirm('Do you want to refresh the page and invalidate cached files?')) {
location.reload(true);
}
});
}
}