dh_ackergaul
vor 3 Tagen bb80cdf5a6157ca1f3a276e12e9faae9a4739cb7
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
doctype html
 
html
    head
        meta(charset="utf-8")
 
        meta(name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height")
 
        meta(name="mobile-web-app-capable" content="yes")
        meta(name="apple-mobile-web-app-title" content="furnview")
 
        link(rel="apple-touch-icon" sizes="128x128" href="/images/favicon.png")
        link(rel="apple-touch-icon-precomposed" sizes="128x128" href="/images/favicon.png")
 
        link(rel="icon" sizes="128x128" href="/images/favicon.png")
 
        // STYLES
        link(rel="stylesheet", href="/styles/0fc145572b09ffbad242.dhmc.css")
        // STYLES END
        // SCRIPTS
        script(src="/js/0fc145572b09ffbad242.externals.js")
        // SCRIPTS END
        script(src="/js/unsupported.js")
 
        if g_customerNo
            script.
                var g_customerNo = !{g_customerNo};
 
        if g_auth_id
            script.
                var g_auth_id = !{JSON.stringify(g_auth_id)};
 
 
    title furnview
 
    body#furnview-start
        img(src="/images/furnview.png")
 
        .dhmc-vspacer-20
 
        .ui.active.centered.inline.loader
 
        script.
            // carry the identity token into /local (cookieless fallback for these routes)
            var authParam = window.g_auth_id ? ("?auth_id=" + encodeURIComponent(window.g_auth_id)) : "";
            if (window.g_customerNo) {
                window.location = "/local/" + window.g_customerNo + authParam;
            }
            else {
                window.location = "/local" + authParam;
            }