36 lines
708 B
HTML
36 lines
708 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||
|
<meta charset="utf-8">
|
||
|
<style type="text/css">
|
||
|
.body {
|
||
|
background: #FFFFFF;
|
||
|
}
|
||
|
.spinner
|
||
|
{
|
||
|
position: absolute;
|
||
|
text-align: center;
|
||
|
margin: auto;
|
||
|
top: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
width: 100px;
|
||
|
height: 100px;
|
||
|
}
|
||
|
.spinner img {
|
||
|
display: block;
|
||
|
margin-left: auto;
|
||
|
margin-right: auto;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="spinner">
|
||
|
<img src="/loleaflet/dist/images/spinner.gif">
|
||
|
<h4>Loading...</h4>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|