25 lines
671 B
HTML
25 lines
671 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html>
|
||
|
|
<head lang="en">
|
||
|
|
<meta charset="utf-8">
|
||
|
|
<title>Jibo Simulator</title>
|
||
|
|
<link rel="stylesheet" type="text/css" href="assets/css/client.css" />
|
||
|
|
<link rel="stylesheet" type="text/css" href="assets/css/font-awesome.min.css"/>
|
||
|
|
<style>
|
||
|
|
body{
|
||
|
|
background-color: #404040;
|
||
|
|
}
|
||
|
|
h1{
|
||
|
|
font-size: 16px;
|
||
|
|
color: #efefef;
|
||
|
|
padding: 30px;
|
||
|
|
text-align: center;
|
||
|
|
padding-top: 62px;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<h1>The Simulator is already running. Please close the open instance of the Simulator before launching a new one.</h1>
|
||
|
|
</body>
|
||
|
|
</html>
|