27 lines
570 B
HTML
27 lines
570 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>OCBO e-Sign Server</title>
|
|
<style>
|
|
body {
|
|
background-color: #16212c;
|
|
}
|
|
|
|
.title {
|
|
font-family: 'Roboto', sans-serif;
|
|
width: 100%;
|
|
text-align: center;
|
|
margin: 0;
|
|
padding: 20px;
|
|
color: white;
|
|
font-size: 3.25rem;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<h1 class="title">OCBO e-Sign Server is running</h1>
|
|
</body>
|
|
</html>
|