Compare commits

..

1 Commits
main ... moha

Author SHA1 Message Date
9f24918f10 connexion et style 2025-05-14 14:37:55 +02:00
8 changed files with 15 additions and 103 deletions

View File

@ -1,16 +0,0 @@
<?php
class connexionVerif {
private $motPasse;
private $identifiant;
function __construct($mdp, $id)
{
return "n";
}
function visiteurConnect($mdp, $id){
$requete = "Select vNum FROM VISITEUR where vMdp = :mdp and vIdentifiant = :id";
}
}

View File

@ -4,8 +4,9 @@
-- > Le jeu de caractères utilisé est utf8.
-- =====================================================================================================
-- set names 'utf8';
Drop database if exists gsbbdcr;
USE gsbbdcr;
DROP DATABASE IF EXISTS bdgsb;
CREATE DATABASE `bdgsb` CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
USE bdgsb;
-- ----------------------------------------------------------------------------------------------
create table FAMILLE(fCode VARCHAR(3) not null,fLibelle VARCHAR(83),primary key(fCode)) ENGINE=INNODB DEFAULT CHARSET=utf8;
--
@ -21,7 +22,7 @@ create table TYPE_PRATICIEN(tCode VARCHAR(2) not null,tLibelle VARCHAR(31),tLieu
--
create table VISITEUR(vNum INT NOT NULL, vNom VARCHAR(25), vPrenom VARCHAR(25), vIdentifiant VARCHAR(30), vMdp VARCHAR(20), PRIMARY KEY (vNum)) ENGINE=INNODB DEFAULT CHARSET=utf8;
--
create table AVIS(aCode INT AUTO_INCREMENT, mDepotLegal VARCHAR(10) NOT NULL, aAuteur INT NOT NULL, aContenu TEXT NOT NULL, aDate DATE, PRIMARY KEY (aCode)) ENGINE=INNODB DEFAULT CHARSET=utf8;
create table AVIS(aCode INT AUTO_INCREMENT, mDepotLegal VARCHAR(10) NOT NULL, aAuteur INT NOT NULL, aContenu TEXT NOT NULL, aDate DATE DEFAULT CURRENT_DATE, PRIMARY KEY (aCode)) ENGINE=INNODB DEFAULT CHARSET=utf8;
--
create table VISITE(visiteId int not null, visiteDate date, visiteMotif varchar(50), visiteCompteRendu varchar(1200), dateCompteRendu DATE, praticienNum int not null, visiteurNum int, depotLegal1 varchar(10), depotLegal2 varchar(10), primary key(visiteId)) ENGINE=INNODB DEFAULT CHARSET=utf8;
-- ----------------------------------------------------------------------------------------------

View File

@ -1,39 +0,0 @@
<?php
use Dba\Connection;
class connexionSQL {
private static ?connexionSQL $instance = null;
private $ip = '10.121.38.71';
private $user = 'devEmile';
private $pass = 'ileane69b';
private $database = 'gsbbdcr';
private function __construct()
{
$this->creerConnexion($this->ip, $this->database, $this->user, $this->pass);
}
private function creerConnexion($serveur , $bdd , $nomUtilisateur , $motPasse) {
// Définition de la source des données pour PDO
$dsn = "mysql:host=$serveur;dbname=$bdd;charset=utf8mb4";
// Création de l'objet $dbh, de type PDO, qui est la ressource d'accès à la base
try {
$dbh = new PDO($dsn, $nomUtilisateur, $motPasse);
}
catch (PDOException $e) {
die("Erreur de connexion : ".$e->getMessage());
}
}
public static function getInstance(){
if(self::$instance == null)
{
echo "Bonjour";
self::$instance = new connexionSQL();
}
return self::$instance;
}
}

View File

@ -1,12 +1,8 @@
;Connexion base de données
[databaseServer]
driver = "mysql"
dbHost = "localhost"
dbName = "bdgsb"
charset = "utf8mb4"
username = "root"
passwd = "root"

0
Modele/connexionBdd.php Normal file
View File

View File

@ -97,4 +97,9 @@ body {
position: fixed;
bottom: 0;
width: 100%;
}
input[type="text"], input[type="password"] {
width: 300px;
margin: 0 auto;
}

View File

@ -1,5 +0,0 @@
<?php
require('./../Database/connexionBdd.php');
var_dump(connexionSQL::getInstance());

View File

@ -13,20 +13,6 @@
font-family: 'Barlow', sans-serif;
}
</style>
<script>
// Fonction de validation du formulaire
function validateForm() {
const username = document.getElementById('username').value;
const password = document.getElementById('password').value;
const role = document.querySelector('input[name="role"]:checked');
if (username == "" || password == "" || !role) {
alert("Tous les champs doivent être remplis, y compris le choix du rôle.");
return false;
}
return true;
}
</script>
</head>
<body>
@ -41,8 +27,8 @@
<main class="main-content">
<h2>Connexion à l'application</h2>
<form action="authentification.php" method="POST" onsubmit="return validateForm()">
<br>
<form action="connexionVerif.php" method="POST" onsubmit="return validateForm()">
<div class="mb-3">
<label for="username" class="form-label">Nom d'utilisateur</label>
<input type="text" class="form-control" id="username" name="username" required>
@ -52,23 +38,7 @@
<label for="password" class="form-label">Mot de passe</label>
<input type="password" class="form-control" id="password" name="password" required>
</div>
<div class="mb-3">
<label class="form-label">Choisissez votre rôle</label>
<div class="form-check">
<input class="form-check-input" type="radio" name="role" id="praticien" value="praticien">
<label class="form-check-label" for="praticien">
Praticien
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="role" id="visiteur" value="visiteur">
<label class="form-check-label" for="visiteur">
Visiteur
</label>
</div>
</div>
<br>
<button type="submit" class="btn btn-primary">Se connecter</button>
</form>
</main>