Files
abap_tutorial_11/webapp/index.html
2025-04-25 22:19:01 +02:00

45 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Flighty</title>
<style>
html,
body,
body>div,
#container,
#container-uiarea {
height: 100%;
}
</style>
<script id="sap-ui-bootstrap" src="resources/sap-ui-core.js" data-sap-ui-theme="sap_fiori_3"
data-sap-ui-resourceroots='{
"mvcapp00124": "./"
}' data-sap-ui-oninit="module:sap/ui/core/ComponentSupport" data-sap-ui-compatVersion="edge"
data-sap-ui-async="true" data-sap-ui-frameOptions="trusted"></script>
<script>
sap.ui.getCore().attachInit(function () {
sap.ui.require([
"sap/m/Shell",
"sap/ui/core/ComponentContainer"
], function (Shell, ComponentContainer) {
new Shell({
app: new ComponentContainer({
name: "mvcapp00124",
settings: {
id: "webapp"
}
})
}).placeAt("content");
});
});
</script>
</head>
<body class="sapUiBody sapUiSizeCompact" id="content">
</body>
</html>