PY_PROXY/templates/404.html

28 lines
488 B
HTML
Raw Permalink Normal View History

<style>
.loading {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
.spinner {
position: absolute;
top: 50%;
margin-top: -20px;
width: 100%;
height: 40px;
text-align: center;
font-size: 10px;
}
h1 {
font-size: 25px;
}
</style>
<div class="loading">
<div class="spinner">
<h1>Service <b>{{SERVICE}}</b> not found !!!</h1>
</div>
</div>