summaryrefslogtreecommitdiff
path: root/qpid/tools/src/java/qpid-qmf2-tools/bin/qpid-web/web/index.html
blob: e21871b59f38f1ed781557fda944f0a58d56b576 (plain)
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
52
53
54
55
56
<!DOCTYPE html>
<!--
  Licensed to the Apache Software Foundation (ASF) under one
  or more contributor license agreements.  See the NOTICE file
  distributed with this work for additional information
  regarding copyright ownership.  The ASF licenses this file
  to you under the Apache License, Version 2.0 (the
  "License"); you may not use this file except in compliance
  with the License.  You may obtain a copy of the License at
  
    http://www.apache.org/licenses/LICENSE-2.0
  
  Unless required by applicable law or agreed to in writing,
  software distributed under the License is distributed on an
  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  KIND, either express or implied.  See the License for the
  specific language governing permissions and limitations
  under the License.
-->

<!--
This page provides a "welcome" page for the Qpid REST Service it immediately redirects to ui/qmf.html
which requires authentication. The main reason for this page is to provide a "welcome" screen prior to
the browser's authentication popup appearing, which makes it more obvious that it's the Qpid REST Service
that is requesting authentication.
-->
<html>
<head>
    <title>QMF Console</title>
    <link rel="stylesheet" type="text/css" href="/qmf-ui/css/index.css"/>

    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>

    <!-- Changes the logical window size used when displaying a page on iOS. -->
    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"/>

    <noscript>
        <meta http-equiv="refresh" content="2; URL=/ui/qmf.html">
    </noscript>

    <script>
    <!--
        window.onload=function()
        { // Do redirect
            window.location.replace("/ui/qmf.html");
        }
    //-->
    </script>

</head>

<body>
    <div class="logo"></div>
</body>

</html>