45 lines
1.5 KiB
HTML
45 lines
1.5 KiB
HTML
<!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" />
|
|
|
|
<title> Cloudron Error </title>
|
|
|
|
<!-- Custom Fonts -->
|
|
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet" type="text/css">
|
|
<link href="https://fonts.googleapis.com/css?family=Roboto:300" 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>
|
|
|
|
<!-- Angularjs scripts -->
|
|
<script src="3rdparty/js/angular.min.js"></script>
|
|
<script src="3rdparty/js/angular-loader.min.js"></script>
|
|
|
|
<!-- Error Application -->
|
|
<script src="js/error.js"></script>
|
|
|
|
<!-- Theme CSS -->
|
|
<link href="theme.css" rel="stylesheet">
|
|
|
|
</head>
|
|
|
|
<body ng-app="Application" ng-controller="ErrorController">
|
|
|
|
<center ng-show="errorCode == 0">
|
|
<h1> <i class="fa fa-frown-o fa-fw text-danger"></i> Something has gone wrong </h1>
|
|
Please check your cloudron status <a href="" ng-click="webServerOriginLink">here</a>.
|
|
</center>
|
|
|
|
<center ng-show="errorCode == 1">
|
|
<h1> <i class="fa fa-frown-o fa-fw text-danger"></i> Cloudron is not setup </h1>
|
|
Please use the setup link you received via mail or use the setup button <a href="" ng-click="webServerOriginLink">here</a>.
|
|
</center>
|
|
|
|
</body>
|
|
</html>
|