12345678910111213141516171819202122232425262728 |
- <?php require_once "./head.inc" ?>
- <html>
- <head>
- <title id="pageTitleId"><?php echo $RES['page.title'] ?></title>
- <!-- CSS -->
- <link type="text/css" rel="stylesheet" href="../yui-3.5.1/build/cssreset/cssreset-min.css">
- <link type="text/css" rel="stylesheet" href="../css/bootstrap.css" media="screen"/>
- <link type="text/css" rel="stylesheet" href="../css/common.css" media="screen"/>
- <link type="text/css" rel="stylesheet" href="../css/common2.css" media="screen"/>
- <link type="text/css" rel="stylesheet" href="../css/common3.css" media="screen"/>
- <link type="text/css" rel="stylesheet" href="../css/selectHosts.css" media="screen"/>
- <link rel="shortcut icon" href="../images/logo-micro.gif">
- <!-- End CSS -->
- </head>
- <body class="yui3-skin-sam">
- <?php require "./topnav.htmli"; ?>
- <div id="ContentDivId">
- <div class="container">
- <div class="alert alert-important" style="margin-top:40px;padding:20px">
- <h2 style="margin-bottom:10px"><?php echo $RES['installFailed.header'] ?></h2>
- <p><?php echo $RES['installFailed.body'] ?></p>
- <a class='btn btn-large' style='margin-top:20px' href='uninstallWizard.php'><?php echo $RES['installFailed.submit.label'] ?></a>
- </div>
- </div>
- </div>
- </body>
- </html>
|