nezha/resource/template/dashboard-default/redirect.html
2022-06-03 10:02:11 +08:00

18 lines
463 B
HTML
Vendored

{{define "dashboard-default/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}}