2026-05-23 09:23:12 -05:00

30 lines
978 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<script>
Promise.all([
// Load CSS file
A3API.RequestFile("forge\\forge_client\\addons\\phone\\ui\\_site\\dist\\app.bundle.css"),
// Load JavaScript file
A3API.RequestFile("forge\\forge_client\\addons\\phone\\ui\\_site\\dist\\app.bundle.js")
]).then(([css, js]) => {
// Apply CSS
const style = document.createElement('style');
style.textContent = css;
document.head.appendChild(style);
// Load and execute JavaScript
const script = document.createElement('script');
script.text = js;
document.head.appendChild(script);
// Initialize the phone interface
initializeApp();
});
</script>
</head>
<body>
<div id="app"></div>
</body>
</html>