nezha/resource/template/dashboard/redirect.html

18 lines
455 B
HTML
Raw Normal View History

{{define "dashboard/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">
<title>Redireting..</title>
</head>
<body>
2022-04-30 09:39:25 -04:00
<p>Please click <a href="{{.URL}}">here</a> if you are not redirected.</p>
<script>window.location.href = "{{.URL}}"</script>
</body>
</html>
{{end}}