nezha/resource/template/dashboard-default/redirect.html

15 lines
462 B
HTML
Raw Normal View History

2022-06-02 21:45:11 -04:00
{{define "dashboard-default/redirect"}}
<!DOCTYPE html>
2022-04-30 09:30:58 -04:00
<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">
2022-09-14 10:14:53 -04:00
<title>Redirecting..</title>
</head>
<body>
2022-09-14 10:14:53 -04:00
<p>If you are not redirected, please click <a href="{{.URL}}">here</a>.</p>
<script>window.location.href = "{{.URL}}"</script>
</body>
</html>
{{end}}