<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Welcome to Anchor</title>
<style>
body {
font: 100% "Helvetica Neue", "Open Sans", "DejaVu Sans", "Arial", sans-serif;
text-align: center;
background: #444f5f;
color: #fff;
}
div {
width: 400px;
height: 160px;
position: absolute;
left: 50%;
top: 30%;
margin: -80px 0 0 -200px;
}
h1 {
font-size: 29px;
line-height: 35px;
font-weight: 300;
margin: 30px 0;
}
a {
display: inline-block;
padding: 0 22px;
background: #2F3744;
color: #96A4BB;
font-size: 13px;
line-height: 38px;
font-weight: bold;
text-decoration: none;
border-radius: 5px;
}
</style>
</head>
<body>
<div>
<img src="<?php echo rtrim(dirname($_SERVER['SCRIPT_NAME']), '/'); ?>/anchor/views/assets/img/logo.png" alt="Anchor logo">
<h1>Welcome to Anchor. Letâs go.</h1>
<a href="<?php echo rtrim(dirname($_SERVER['SCRIPT_NAME']), '/') . '/install'; ?>">Run the installer</a>
</div>
</body>
</html>