bitburner-src/electron/exit.html

30 lines
462 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="en">
<head>
2022-04-07 01:30:08 +02:00
<meta charset="utf-8" />
<title>Bitburner</title>
<style>
body {
background-color: black;
color: #0c0;
}
div {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
h1 {
text-align: center;
}
</style>
</head>
<body>
<div>
<h1>Exiting ...</h1>
</div>
</body>
</html>