aboutsummaryrefslogtreecommitdiffstats
path: root/index.html
blob: 5fb2a0b1224569f5c42257de1c635df80290d5b6 (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
57
58
59
60
61
62
63
64
65
66
67
---
title: Home
permalink: /
---
<head>
<link rel="apple-touch-icon-precomposed" href="images/favicons/favicon-152.png">
<meta name="msapplication-TileColor" content="#0193d7">
<meta name="msapplication-TileImage" content="images/favicons/favicon-144.png">
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="images/favicons/favicon-152.png">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="images/favicons/favicon-144.png">
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="images/favicons/favicon-120.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="images/favicons/favicon-72.png">
<link rel="apple-touch-icon-precomposed" href="images/favicons/favicon-57.png">
<link rel="icon" href="images/favicons/favicon-32.png" sizes="32x32">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<style>
body {
    background-color: rgb(204, 204, 204);
    background-image: url(images/default/background.jpg);
    background-repeat: no-repeat;
    background-position: center center;
}
.container {
    padding-top: 50px;
}
#clients {
    border-radius: 5px;
    background-color: lightgrey;
    padding: 5px;
    margin: 5px;
}
</style>
</head>
<body>
<div class="container">
    <div class="row">
<center>
<img ng-src="images/default/logo.png" class="unifiPortalLogo__image" src="images/default/logo.png">
<h1 style="color:white;">{{ site.title }}</h1>
</center>
</div>
</div>

<div class="container offsetanchor">
    <div class="row">
        {% for loc in site.data.sites %}
        <div class="col-md-4 col-sm-6">
            <div id="clients">
                {% if loc.img %}
                <center><img src="{{ site.url }}/img/clients/{{ client.img }}" height="80px" /></center>
                {% endif %}
                <center><h3>{{ loc.name }}</h3></center>
                <ul>
                    <li><b>Admin Dashboard</b>: <a href="https://{{ site.url }}:8443/manage/site/{{ loc.id }}/dashboard">Here</a></li>
                    <li><b>Hotspot Portal</b>: <a href="https://{{ site.url }}:8443/manage/hotspot/site/{{ loc.id }}/">Here</a></li>
                    <li><b>Hotspot Portal login</b>: <a href="https://{{ site.url }}:8443/manage/hotspot/account/login/{{ loc.id }}/">Here</a></li>
                    <li><b>Guest Portal</b>: <a href="http://{{ site.url }}:8880/guest/s/{{ loc.id }}/">Here</a></li>
                </ul>
            </div>
        </div><!-- end class col-md-4 -->
        {% endfor %}
    </div><!-- end class row -->
</div><!-- end id clients -->

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
</body>