mirror of
				https://github.com/h44z/wg-portal.git
				synced 2025-11-04 08:06:18 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			31 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html lang="en">
 | 
						|
<head>
 | 
						|
    <meta charset="utf-8">
 | 
						|
    <meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
 | 
						|
    <title>{{ .Static.WebsiteTitle }} - Error</title>
 | 
						|
    <meta name="description" content="{{ .Static.WebsiteTitle }}">
 | 
						|
    <link rel="stylesheet" href="/css/bootstrap.min.css">
 | 
						|
    <link rel="stylesheet" href="/fonts/fontawesome-all.min.css">
 | 
						|
    <link rel="stylesheet" href="/css/custom.css">
 | 
						|
</head>
 | 
						|
 | 
						|
<body id="page-top">
 | 
						|
{{template "prt_nav.html" .}}
 | 
						|
<div class="container">
 | 
						|
    <div class="text-center mt-5">
 | 
						|
        <div class="error mx-auto" data-text="{{.Data.Code}}">
 | 
						|
            <p class="m-0">{{.Data.Code}}</p>
 | 
						|
        </div>
 | 
						|
        <p class="text-dark mb-5 lead">{{.Data.Message}}</p>
 | 
						|
        <p class="text-black-50 mb-0">{{.Data.Details}}</p><a href="/">← Back to Dashboard</a>
 | 
						|
    </div>
 | 
						|
</div>
 | 
						|
{{template "prt_footer.html" .}}
 | 
						|
<script src="/js/jquery.min.js"></script>
 | 
						|
<script src="/js/bootstrap.bundle.min.js"></script>
 | 
						|
<script src="/js/jquery.easing.js"></script>
 | 
						|
<script src="/js/custom.js"></script>
 | 
						|
</body>
 | 
						|
 | 
						|
</html> |