Files
acrn-hypervisor/misc/config_tools/configurator/index.html
Weiyi Feng 696ba31be8 config_tools: refactor configurator for web page cache issue
refactor configurator for web page cache issue

Tracked-On: #7356
Signed-off-by: Weiyi Feng <weiyix.feng@intel.com>
2022-04-25 18:13:12 +08:00

25 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<link rel="icon" href="/favicon.ico"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>ACRN Configurator</title>
</head>
<!-- must using style, otherwise style will lost -->
<body style="margin: 0;padding: 0;height: calc(100vh - 1px);width: calc(100vw - 1px);border: 1px #787878 solid;">
<div id="app">
<div data-tauri-drag-region="true" style="width: 100%;height: 100%;position:fixed;overflow:hidden;display: flex;justify-content: center;align-items: center;background: #007B81">
<div style="display: block;color: white;text-align: center;user-select: none">
<text style="font-size:36px;display: flex;padding: 16px">
<img data-tauri-drag-region="true" src="src/assets/images/ACRN_Logo.svg" alt="logo" style="height: 49px;padding-right: 1.5rem"/>
Loading...
</text>
<text style="font-size:24px;display: block">Please wait for 5 seconds~</text>
</div>
</div>
</div>
<script type="module" src="/src/main.js"></script>
</body>
</html>