Add footers to the setup views

This commit is contained in:
Johannes Zellner
2017-01-06 17:57:22 +01:00
parent bd65e1f35d
commit 35b11d7b22
4 changed files with 29 additions and 10 deletions

View File

@@ -27,6 +27,7 @@
margin: 0;
height: 100%;
width: 100%;
text-align: center;
}
.wrapper {
@@ -39,7 +40,6 @@
display: table-cell;
width: 100%;
height: 100%;
text-align: center;
vertical-align: middle;
}
@@ -54,6 +54,11 @@
position: fixed;
}
footer a {
color: #62bdfc;
padding: 10px;
}
</style>
</head>
@@ -65,14 +70,14 @@
<h1><i class="fa fa-frown-o fa-fw text-danger"></i></h1>
<h2>Something has gone wrong</h2>
This app is currently not running. Try refreshing the page.
</div>
</div>
<!-- Footer -->
<footer class="text-center ng-cloak">
<span class="text-muted"><a href="https://cloudron.io" target="_blank">Cloudron</a> &copy; 2015-16 </span>
<span class="text-muted"><a href="https://chat.cloudron.io" target="_blank">Live Chat <i class="fa fa-comments"></i></a></span>
</footer>
<footer>
<span class="text-muted"><a href="https://cloudron.io" target="_blank">Cloudron</a> &copy; 2017 </span>
<span class="text-muted"><a href="https://chat.cloudron.io" target="_blank">Live Chat <i class="fa fa-comments"></i></a></span>
</footer>
</div>
</div>
</body>
</html>

View File

@@ -6,6 +6,8 @@
<title> Cloudron Error </title>
<link id="favicon" href="/api/v1/cloudron/avatar" rel="icon" type="image/png">
<!-- Theme CSS -->
<link href="theme.css" rel="stylesheet" type="text/css">
@@ -80,7 +82,8 @@
</div>
<footer>
<span class="text-muted"><a href="mailto: support@cloudron.io">Contact Support</a> - Copyright &copy; <a href="https://cloudron.io" target="_blank">Cloudron</a> 2016</span>
<span class="text-muted"><a href="https://cloudron.io" target="_blank">Cloudron</a> &copy; 2017 </span>
<span class="text-muted"><a href="https://chat.cloudron.io" target="_blank">Live Chat <i class="fa fa-comments"></i></a></span>
</footer>
</div>
</div>

View File

@@ -11,9 +11,15 @@
<!-- Theme CSS -->
<link href="theme.css" rel="stylesheet" type="text/css">
<!-- external fonts and CSS -->
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<!-- jQuery-->
<script src="3rdparty/js/jquery.min.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="3rdparty/js/bootstrap.min.js"></script>
<script>
$(function () {
@@ -45,7 +51,8 @@
<h4>Use the <a id="settings-link">settings panel</a> and install an app leaving the location empty.</h4>
<footer>
<span class="text-muted"><a href="mailto: support@cloudron.io">Contact Support</a> - Copyright &copy; <a href="https://cloudron.io" target="_blank">Cloudron</a> 2016</span>
<span class="text-muted"><a href="https://cloudron.io" target="_blank">Cloudron</a> &copy; 2017 </span>
<span class="text-muted"><a href="https://chat.cloudron.io" target="_blank">Live Chat <i class="fa fa-comments"></i></a></span>
</footer>
</div>
</div>

View File

@@ -100,5 +100,9 @@
</div>
</div>
<footer>
<span class="text-muted"><a href="mailto: support@cloudron.io">Contact Support</a> - Copyright &copy; <a href="https://cloudron.io" target="_blank">Cloudron</a> 2017</span>
</footer>
</body>
</html>