1
- <!doctype html> < html lang ="en "> < head > < meta charset ="utf-8 "/> < meta http-equiv ="X-UA-Compatible " content ="IE=edge,chrome=1 "/> < meta name ="viewport " content ="width=device-width "/> < meta name ="theme-color " content ="#000 "/> < title > [[.AppTitle]] - Error</ title > < base href ="[[.AppSubUrl]]/ "/> [[ if eq .ThemeType "light" ]]< link rel ="stylesheet " href ="[[.Assets.Light]] "/> [[ else ]]< link rel ="stylesheet " href ="[[.Assets.Dark]] "/> [[ end ]]< link rel ="icon " type ="image/png " href ="public/img/fav32.png "/> < link rel ="mask-icon " href ="public/img/grafana_mask_icon.svg " color ="#F05A28 "/> </ head > < body class ="theme-[[ .ThemeType ]] "> < div class ="main-view "> < div class ="page-container "> < div class ="page-header "> < div class ="page-header__inner "> < span class ="page-header__logo "> < i class ="page-header__icon fa fa-frown-o "> </ i > </ span > < div class ="page-header__info-block "> < h1 class ="page-header__title "> < a class ="text-link " href ="login "> Grafana</ a > < span > / Server Error</ span > < span > </ span > </ h1 > < div class ="page-header__sub-title "> Sadly something went wrong</ div > </ div > </ div > </ div > </ div > < div class ="page-container page-body ng-scope " style ="padding: 2rem "> < div class ="alert "> < div class ="alert-icon "> < icon name ="'exclamation-triangle' "> </ icon > </ div > < div class ="alert-body "> < div class ="alert-title "> [[.Title]]</ div > </ div > </ div > < br /> [[if .ErrorMsg]]< h4 class ="page-heading "> Error details</ h4 > < div class ="alert-text "> < pre > [[.ErrorMsg]]</ pre > </ div > [[end]]< div style ="padding: 2rem 0 0 "> < p > Check the Grafana server logs for the detailed error message.</ p > </ div > </ div > </ div > </ body > </ html >
1
+ <!DOCTYPE html>
2
+ < html lang ="en ">
3
+ < head >
4
+ < meta charset ="utf-8 " />
5
+ < meta http-equiv ="X-UA-Compatible " content ="IE=edge,chrome=1 " />
6
+ < meta name ="viewport " content ="width=device-width " />
7
+ < meta name ="theme-color " content ="#000 " />
8
+
9
+ < title > [[.AppTitle]] - Error</ title >
10
+
11
+ < base href ="[[.AppSubUrl]]/ " />
12
+
13
+ [[ if eq .ThemeType "light" ]]
14
+ < link rel ="stylesheet " href ="[[.Assets.Light]] " />
15
+ [[ else ]]
16
+ < link rel ="stylesheet " href ="[[.Assets.Dark]] " />
17
+ [[ end ]]
18
+
19
+ < link rel ="icon " type ="image/png " href ="public/img/fav32.png " />
20
+ < link rel ="mask-icon " href ="public/img/grafana_mask_icon.svg " color ="#F05A28 " />
21
+ </ head >
22
+
23
+ < body class ="theme-[[ .ThemeType ]] ">
24
+ < div class ="main-view ">
25
+ < div class ="page-container ">
26
+ < div class ="page-header ">
27
+ < div class ="page-header__inner ">
28
+ < span class ="page-header__logo ">
29
+ < i class ="page-header__icon fa fa-frown-o "> </ i >
30
+ </ span >
31
+ < div class ="page-header__info-block ">
32
+ < h1 class ="page-header__title ">
33
+ < a class ="text-link " href ="login "> Grafana</ a > < span > / Server Error</ span > < span > </ span >
34
+ </ h1 >
35
+ < div class ="page-header__sub-title "> Sadly something went wrong</ div >
36
+ </ div >
37
+ </ div >
38
+ </ div >
39
+ </ div >
40
+ < div class ="page-container page-body ng-scope " style ="padding: 2rem ">
41
+ < div class ="alert ">
42
+ < div class ="alert-icon "> < icon name ="'exclamation-triangle' "> </ icon > </ div >
43
+ < div class ="alert-body ">
44
+ < div class ="alert-title "> [[.Title]]</ div >
45
+ </ div >
46
+ </ div >
47
+ < br />
48
+ [[if .ErrorMsg]]
49
+ < h4 class ="page-heading "> Error details</ h4 >
50
+ < div class ="alert-text ">
51
+ < pre > [[.ErrorMsg]]</ pre >
52
+ </ div >
53
+ [[end]]
54
+ < div style ="padding: 2rem 0 0 ">
55
+ < p > Check the Grafana server logs for the detailed error message.</ p >
56
+ </ div >
57
+ </ div >
58
+ </ div >
59
+ </ body >
60
+ </ html >
0 commit comments