mirror of
https://github.com/nezhahq/nezha.git
synced 2025-01-23 13:18:13 -05:00
18 lines
465 B
HTML
Vendored
18 lines
465 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>Redirecting..</title>
|
|
</head>
|
|
|
|
<body>
|
|
<p>If you are not redirected, please click <a href="{{.URL}}">here</a>.</p>
|
|
<script>window.location.href = "{{.URL}}"</script>
|
|
</body>
|
|
|
|
</html>
|
|
{{end}} |