microserviciile de register, login finalizate

This commit is contained in:
Cerbu Andrei Mihnea
2023-06-15 22:21:53 +03:00
parent a739a66ae4
commit 4e585ba278
159 changed files with 4775 additions and 1747 deletions
+28
View File
@@ -0,0 +1,28 @@
<?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>