-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
62 lines (55 loc) · 2.95 KB
/
Copy pathindex.php
File metadata and controls
62 lines (55 loc) · 2.95 KB
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
<?php
/**
* TironData — DBMS: Data Builder for Massive Samples
*
* @package TironData
* @author Harits Nala B. <developer.haritsnb@gmail.com>
* @license MIT License <https://opensource.org/licenses/MIT>
* @link https://github.com/haritsnb/tirondata
*/
session_start(); ?>
<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TironData | DBMS: Data Builder for Massive Samples</title>
<link rel="icon" type="image/svg+xml" href='data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23243966" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"> <ellipse cx="12" cy="5" rx="9" ry="3"/> <path d="M3 5V19A9 3 0 0 0 15 21.84"/> <path d="M21 5V8"/> <path d="M21 12L18 17H22L19 22"/> <path d="M3 12A9 3 0 0 0 14.59 14.87"/> </svg>'>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/app.css">
</head>
<body>
<!-- Loader awal, disembunyikan setelah modul JS selesai dimuat -->
<div id="app-loader" class="app-loader">
<div class="loader-ring"></div>
<p>Memuat modul...</p>
</div>
<!-- Elemen latar belakang dekoratif -->
<div id="bg-effects" aria-hidden="true">
<div class="bg-orb bg-orb--1"></div>
<div class="bg-orb bg-orb--2"></div>
<div class="bg-orb bg-orb--3"></div>
</div>
<!-- Kerangka aplikasi utama -->
<div id="app" class="app" style="opacity:0">
<header class="app-header">
<div class="app-header__inner">
<div class="app-header__brand">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="#243966" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-database-zap-icon lucide-database-zap"><ellipse cx="12" cy="5" rx="9" ry="3"/><path d="M3 5V19A9 3 0 0 0 15 21.84"/><path d="M21 5V8"/><path d="M21 12L18 17H22L19 22"/><path d="M3 12A9 3 0 0 0 14.59 14.87"/></svg>
<h1 class="app-header__title">TironData</h1>
</div>
<p class="app-header__subtitle">DBMS: Data Builder for Massive Samples</p>
</div>
</header>
<main class="app-main">
<section id="connection-section" class="app-section"></section>
<section id="tables-section" class="app-section" style="display:none"></section>
</main>
</div>
<!-- Kontainer notifikasi toast -->
<div id="notification-container" class="notification-container" aria-live="polite"></div>
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
<script src="js/app.js"></script>
</body>
</html>