21 lines
576 B
HTML
21 lines
576 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<link rel="icon" href="./favicon.ico" type="image/x-icon"/>
|
||
|
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon"/>
|
||
|
<link rel="bookmark" href="./favicon.ico" type="image/x-icon"/>
|
||
|
<title>{{ title }}</title>
|
||
|
<script type="text/javascript">
|
||
|
var csrfToken = '{{ csrfToken }}';
|
||
|
var arch = '{{ arch }}';
|
||
|
var oemSwitch = '{{ oemSwitch }}';
|
||
|
var oemProductName = '{{ oemProductName }}';
|
||
|
</script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="timeout">
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|