28 lines
		
	
	
		
			488 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			488 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<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> |