- Added a css file for standart css
- Added a css file for Header and Footer and php file for updating after login is sucessfull
- Added a css file for the Main Content
- Added a css file for SingUP page and PHP file for handling Singin
- Added a css file for Dashboard page and PHP for the dynamic page solution
- Added a css file for 404 page
- Added a css file for Login page and PHP file for handling Login
- Added a css file for Terms and Privacy page
- Added a css file for Prices content
This commit is contained in:
2025-07-01 08:38:28 -03:00
parent ed06f52496
commit 4c8088ecc6
47 changed files with 3041 additions and 220 deletions
+12
View File
@@ -0,0 +1,12 @@
<?php
$usuario = 'root';
$senha = '';
$database = 'Login';
$host = 'localhost';
$mysqli = new mysqli($host, $usuario, $senha, $database);
if ($mysqli->error) {
die('Falha ao conectar ao banco de dados: ' . $mysqli->error);
}