28 lines
1001 B
PHP
28 lines
1001 B
PHP
<?php $pathToCSS = "/views/layouts/CSS/styleMain.css";?>
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en" dir="ltr">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1">
|
|
<link rel="stylesheet" type="text/css" href=<?php echo $pathToCSS ?>>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Josefin+Sans&display=swap" rel="stylesheet">
|
|
<title>Know Your Food.</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="BigContainer">
|
|
<h1 class="Title">Know Your Food.</h1>
|
|
<div class="LoginButtons">
|
|
<h3>If you have an account already</h3>
|
|
<button type="button" class="LoginButton" onclick="location.href='login'">Login</button>
|
|
<h3>or</h3>
|
|
<button type="button" class="RegisterButton" onclick="location.href='register'">Register</button>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|