2022-06-02 21:45:11 -04:00
|
|
|
{{define "dashboard-default/redirect"}}
|
2022-04-25 21:20:32 -04:00
|
|
|
<!DOCTYPE html>
|
2022-04-30 09:30:58 -04:00
|
|
|
<html lang="{{.Conf.Language}}">
|
2022-04-25 21:20:32 -04:00
|
|
|
|
|
|
|
<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>
|
2022-04-25 21:20:32 -04:00
|
|
|
<script>window.location.href = "{{.URL}}"</script>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|
|
|
|
{{end}}
|