-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsimple-log.html
More file actions
28 lines (26 loc) · 963 Bytes
/
simple-log.html
File metadata and controls
28 lines (26 loc) · 963 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description" content="Worldpixel Software Simple Log" />
<meta name="author" content="Worldpixel Software" />
<title>Simple Log</title>
<!-- Favicon-->
<link rel="icon" type="image/x-icon" href="assets/icons/sl_icon.ico" />
<!-- Core theme JS-->
<script>
window.onload = onPageLoaded;
function onPageLoaded(){
var language = window.navigator.userLanguage || window.navigator.language;
if(language.startsWith('de')){
window.location.href = "de/simple-log/home";
return;
}
window.location.href = "en/simple-log/home";
}
</script>
</head>
<body>
</body>
</html>