33 lines
764 B
HTML
33 lines
764 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>SkydivelogsApp</title>
|
|
<base href="/" />
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
|
|
/>
|
|
<link rel="icon" type="image/x-icon" href="favicon.ico" />
|
|
</head>
|
|
|
|
<body class="mat-app-background">
|
|
<app-root>
|
|
<div class="app-loading">
|
|
<div class="logo"></div>
|
|
<svg class="spinner" viewBox="25 25 50 50">
|
|
<circle
|
|
class="path"
|
|
cx="50"
|
|
cy="50"
|
|
r="20"
|
|
fill="none"
|
|
stroke-width="2"
|
|
stroke-miterlimit="10"
|
|
/>
|
|
</svg>
|
|
</div>
|
|
</app-root>
|
|
</body>
|
|
</html>
|