File: /home/mediabou/www/index.php
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>Welcome</title>
<link href="layout-styles.css" rel="stylesheet" type="text/css" media="screen" />
</head>
<body>
<div class="wrap">
<div class="top-bar"></div>
<div class="login-container">
<a href="#" onclick='redirectToLogin();' class="btn btn-primary">Login</a>
</div>
<div class="welcome-container text-center coming-soon-wrap">
<h1>
<span id='hostname'></span>
</h1>
<h4>
My site is launching soon.2
</h4>
</div>
</div>
<div class="footer">
Copyright © website.com | <a href="#" onclick='redirectToLogin();'>Login</a> <a href="http://www.godaddy.com">GoDaddy</a>
</div>
<script type='text/javascript'>
document.getElementById( 'hostname' ).innerText = window.location.hostname;
redirectToLogin = function() {
window.location.href = "https://" + window.location.hostname + ":2083";
}
</script>
</body>
</html>