forked from verdnatura/hedera-web
39 lines
972 B
PHP
39 lines
972 B
PHP
<!DOCTYPE html>
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
|
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=no"/>
|
|
<meta name="content-language" content="<?=$lang?>"/>
|
|
<link href="//fonts.googleapis.com/css?family=Roboto" rel="stylesheet" type="text/css"/>
|
|
<?=css("$dir/style")?>
|
|
<title>Verdnatura</title>
|
|
</head>
|
|
<body>
|
|
<div class="box">
|
|
<img
|
|
class="logo"
|
|
src="image/logo.png"
|
|
alt="VerdNatura">
|
|
</img>
|
|
<h2><?=s('BrowserVersionNotCompatible')?></h2>
|
|
<a
|
|
class="download"
|
|
href="http://www.mozilla.org/firefox/new/"
|
|
target="_blank">
|
|
<img
|
|
class="browser-logo"
|
|
src="<?=$dir?>/firefox.png"
|
|
alt="Firefox">
|
|
</img>
|
|
<?=s('PushHereToInstallFirefox')?>
|
|
</a>
|
|
</div>
|
|
<div class="bottom">
|
|
<a class="continue"
|
|
href="?skipBrowser=true">
|
|
<?=s('ContinueAnyway')?>
|
|
</a>
|
|
</div>
|
|
</body>
|
|
</html>
|