e7dcefb069
- Rivisitazione completa gestione riconnessione blazor 8 - fic logico e grafico
38 lines
1.4 KiB
Plaintext
38 lines
1.4 KiB
Plaintext
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
@* <base href="/" /> *@
|
|
@* <base href="~/" /> *@
|
|
<link rel="stylesheet" href="lib/bootstrap/css/bootstrap.min.css" />
|
|
<link rel="stylesheet" href="css/site.min.css" />
|
|
<link rel="stylesheet" href="lib/font-awesome/css/all.min.css" />
|
|
<link rel="stylesheet" href="MP.MON.styles.css" />
|
|
<link rel="icon" type="image/png" href="favicon.ico" />
|
|
<HeadOutlet />
|
|
</head>
|
|
|
|
<body>
|
|
<Routes />
|
|
|
|
<div id="reconnect-modal">
|
|
<div id="reconnect-modal-box" class="pt-5 px-2 bg-dark bg-gradient border border-info border-5 shadow rounded rounded-3 opacity-95">
|
|
<div id="reconnect-modal-text" class="d-flex justify-content-around titolo text-white">Reconnecting...</div>
|
|
<div class="d-flex justify-content-around py-3">
|
|
<i class="fas fa-spinner fa-spin text-warning fs-1"></i>
|
|
</div>
|
|
<div class="d-flex justify-content-around small fs-2 text-primary">
|
|
mancanza di comunicazione con il server
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script src="lib/WindowSize.js"></script>
|
|
@* <script src="_framework/blazor.web.js"></script> *@
|
|
<script src="_framework/blazor.web.js" autostart="false"></script>
|
|
<script src="lib/boot.js"></script>
|
|
</body>
|
|
|
|
</html>
|