Files
cloudron-box/webadmin/src/appstatus.html

84 lines
2.3 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
2015-10-20 12:41:52 +02:00
<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" />
<title> Cloudron App Error </title>
<!-- external fonts and CSS -->
<link href="3rdparty/font-awesome.min.css" rel="stylesheet" rel="stylesheet" type="text/css">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!-- Use static style as we can't include local stylesheets -->
<style>
html {
height: 100%;
width: 100%;
padding: 0;
}
body {
background-color: white;
padding: 0;
margin: 0;
height: 100%;
width: 100%;
2017-01-06 17:57:22 +01:00
text-align: center;
}
.wrapper {
display: table;
width: 100%;
height: 100%;
}
.content {
display: table-cell;
width: 100%;
height: 100%;
vertical-align: middle;
}
2015-10-20 12:41:52 +02:00
footer {
background-color: #EFEFEF;
bottom: 0;
width: 100%;
color: #555;
font-size: 14px;
padding: 5px;
z-index: 1000;
position: fixed;
}
2015-10-20 12:41:52 +02:00
2017-01-06 17:57:22 +01:00
footer a {
color: #62bdfc;
padding: 10px;
}
</style>
2015-10-20 12:41:52 +02:00
</head>
<body>
<div class="wrapper">
<div class="content">
<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>
2017-01-06 17:57:22 +01:00
</div>
2015-10-20 12:41:52 +02:00
<footer class="text-center">
<span class="text-muted">&copy;2017 <a href="https://cloudron.io" target="_blank">Cloudron</a></span>
<span class="text-muted"><a href="https://twitter.com/cloudron_io" target="_blank">Twitter <i class="fa fa-twitter"></i></a></span>
<span class="text-muted"><a href="https://chat.cloudron.io" target="_blank">Chat <i class="fa fa-comments"></i></a></span>
</footer>
</body>
</html>