18 lines
		
	
	
		
			455 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			455 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{{define "dashboard/redirect"}}
 | 
						|
<!DOCTYPE html>
 | 
						|
<html lang="{{.Conf.Language}}">
 | 
						|
 | 
						|
<head>
 | 
						|
    <meta charset="UTF-8">
 | 
						|
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
 | 
						|
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
 | 
						|
    <title>Redireting..</title>
 | 
						|
</head>
 | 
						|
 | 
						|
<body>
 | 
						|
    <p>Please click <a href="{{.URL}}">here</a> if you are not redirected.</p>
 | 
						|
    <script>window.location.href = "{{.URL}}"</script>
 | 
						|
</body>
 | 
						|
 | 
						|
</html>
 | 
						|
{{end}} |