89 lines
2.8 KiB
HTML
89 lines
2.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<meta name="theme-color" content="#081C42" media="(prefers-color-scheme: light)"/>
|
|
<meta name="theme-color" content="#081C42" media="(prefers-color-scheme: dark)"/>
|
|
<meta name="description" content="MinIO Console" />
|
|
<!--
|
|
manifest.json provides metadata used when your web app is installed on a
|
|
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
|
|
-->
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=Lato:wght@400;500;700;900&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
<link href="%PUBLIC_URL%/styles/root-styles.css" rel="stylesheet" />
|
|
<link
|
|
rel="apple-touch-icon"
|
|
sizes="180x180"
|
|
href="%PUBLIC_URL%/apple-icon-180x180.png"
|
|
/>
|
|
<link
|
|
rel="icon"
|
|
type="image/png"
|
|
sizes="32x32"
|
|
href="%PUBLIC_URL%/favicon-32x32.png"
|
|
/>
|
|
<link
|
|
rel="icon"
|
|
type="image/png"
|
|
sizes="96x96"
|
|
href="%PUBLIC_URL%/favicon-96x96.png"
|
|
/>
|
|
<link
|
|
rel="icon"
|
|
type="image/png"
|
|
sizes="16x16"
|
|
href="%PUBLIC_URL%/favicon-16x16.png"
|
|
/>
|
|
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
|
|
<link
|
|
rel="mask-icon"
|
|
href="%PUBLIC_URL%/safari-pinned-tab.svg"
|
|
color="#3a4e54"
|
|
/>
|
|
<!--
|
|
Notice the use of %PUBLIC_URL% in the tags above.
|
|
It will be replaced with the URL of the `public` folder during the build.
|
|
Only files inside the `public` folder can be referenced from the HTML.
|
|
|
|
Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
|
|
work correctly both with client-side routing and a non-root public URL.
|
|
Learn how to configure a non-root public URL by running `npm run build`.
|
|
-->
|
|
<title>MinIO Console</title>
|
|
</head>
|
|
<body>
|
|
<noscript>You need to enable JavaScript to run this app.</noscript>
|
|
<div id="root">
|
|
<div id="loader-block">
|
|
<svg class="loader-svg-container" viewBox="22 22 44 44">
|
|
<circle
|
|
class="
|
|
loader-style
|
|
MuiCircularProgress-circle MuiCircularProgress-circleIndeterminate
|
|
"
|
|
cx="44"
|
|
cy="44"
|
|
r="20.2"
|
|
fill="none"
|
|
stroke-width="3.6"
|
|
></circle>
|
|
</svg>
|
|
</div>
|
|
</div>
|
|
<!--
|
|
This HTML file is a template.
|
|
If you open it directly in the browser, you will see an empty page.
|
|
|
|
You can add webfonts, meta tags, or analytics to this file.
|
|
The build step will place the bundled scripts into the <body> tag.
|
|
|
|
To begin the development, run `npm start` or `yarn start`.
|
|
To create a production bundle, use `npm run build` or `yarn build`.
|
|
-->
|
|
</body>
|
|
</html>
|