Compare commits
9 Commits
1a25de1386
...
main
Author | SHA1 | Date | |
---|---|---|---|
3ebad7a529 | |||
94ca9da5a4 | |||
15fcf9f2ed | |||
d7c3cfb0a1 | |||
2de154611e | |||
353278e563 | |||
ccaa73e0d7 | |||
fcfbfdf60c | |||
b82545f8c6 |
@@ -0,0 +1,16 @@
|
|||||||
|
<?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";
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@@ -4,9 +4,8 @@
|
|||||||
-- > Le jeu de caractères utilisé est utf8.
|
-- > Le jeu de caractères utilisé est utf8.
|
||||||
-- =====================================================================================================
|
-- =====================================================================================================
|
||||||
-- set names 'utf8';
|
-- set names 'utf8';
|
||||||
DROP DATABASE IF EXISTS bdgsb;
|
Drop database if exists gsbbdcr;
|
||||||
CREATE DATABASE `bdgsb` CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
|
USE gsbbdcr;
|
||||||
USE bdgsb;
|
|
||||||
-- ----------------------------------------------------------------------------------------------
|
-- ----------------------------------------------------------------------------------------------
|
||||||
create table FAMILLE(fCode VARCHAR(3) not null,fLibelle VARCHAR(83),primary key(fCode)) ENGINE=INNODB DEFAULT CHARSET=utf8;
|
create table FAMILLE(fCode VARCHAR(3) not null,fLibelle VARCHAR(83),primary key(fCode)) ENGINE=INNODB DEFAULT CHARSET=utf8;
|
||||||
--
|
--
|
||||||
@@ -22,7 +21,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 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 DEFAULT CURRENT_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, 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;
|
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;
|
||||||
-- ----------------------------------------------------------------------------------------------
|
-- ----------------------------------------------------------------------------------------------
|
||||||
|
39
Database/connexionBdd.php
Normal file
39
Database/connexionBdd.php
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
<?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;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@@ -1,8 +1,12 @@
|
|||||||
|
|
||||||
;Connexion base de données
|
;Connexion base de données
|
||||||
|
[databaseServer]
|
||||||
|
driver = "mysql"
|
||||||
|
dbHost = "localhost"
|
||||||
|
dbName = "bdgsb"
|
||||||
|
charset = "utf8mb4"
|
||||||
|
username = "root"
|
||||||
|
passwd = "root"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@@ -6,14 +6,42 @@ body {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.main-header {
|
.main-header {
|
||||||
display: flex;
|
|
||||||
justify-content: space-between;
|
|
||||||
align-items: center;
|
|
||||||
background-color: #ffffff;
|
background-color: #ffffff;
|
||||||
border-bottom: 4px solid #f57c00;
|
border-bottom: 4px solid #f57c00;
|
||||||
padding: 20px 40px;
|
padding: 20px 40px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.header-top {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.main-nav {
|
||||||
|
margin-top: 20px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.main-nav ul {
|
||||||
|
list-style: none;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
display: inline-flex;
|
||||||
|
gap: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.main-nav a {
|
||||||
|
text-decoration: none;
|
||||||
|
color: #333;
|
||||||
|
font-weight: bold;
|
||||||
|
transition: color 0.3s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.main-nav a:hover {
|
||||||
|
color: #f57c00;
|
||||||
|
}
|
||||||
|
|
||||||
.logo-section {
|
.logo-section {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
@@ -0,0 +1,5 @@
|
|||||||
|
<?php
|
||||||
|
require('./../Database/connexionBdd.php');
|
||||||
|
|
||||||
|
var_dump(connexionSQL::getInstance());
|
||||||
|
|
||||||
|
@@ -0,0 +1,48 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="fr">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<title>GSB Application - Accueil</title>
|
||||||
|
<link rel="stylesheet" href="../Styles\style.css">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.6/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-4Q6Gf2aSP4eDXB8Miphtr37CMZZQ5oXLH2yaXMJ2w8e2ZtHTl7GptT4jmndRuHDT" crossorigin="anonymous">
|
||||||
|
<link href="https://fonts.googleapis.com/css2?family=Barlow&family=Cormorant+Garamond:ital@1&display=swap" rel="stylesheet">
|
||||||
|
<link rel="icon" href="../Images\logodetoure.gif" type="image/png">
|
||||||
|
<style>
|
||||||
|
body {
|
||||||
|
font-family: 'Barlow', sans-serif;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<header class="main-header">
|
||||||
|
<div class="header-top">
|
||||||
|
<div class="logo-section">
|
||||||
|
<img src="../Images/LogoDetoure_1.gif" alt="Logo GSB" width="70">
|
||||||
|
<p class="baseline">Gestion des comptes-rendus de visites</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<nav class="nav-right">
|
||||||
|
<a href="../Vue/connexion.php" class="btn-connexion">Connexion</a>
|
||||||
|
</nav>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<nav class="main-nav">
|
||||||
|
<ul>
|
||||||
|
<li><a href="../Vue/agenda.php">Agenda</a></li>
|
||||||
|
<li><a href="../Vue/nouveauCompteRendu.php">Nouveau Compte-Rendu</a></li>
|
||||||
|
<li><a href="../Vue/historiqueCompteRendu.php">Historique Compte-Rendu</a></li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main class="main-content">
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="main-footer">
|
||||||
|
<p>© 2025 - GSB Application</p>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
@@ -0,0 +1,81 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="fr">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<title>GSB Application - Connexion</title>
|
||||||
|
<link rel="stylesheet" href="../Styles/style.css">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.6/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-4Q6Gf2aSP4eDXB8Miphtr37CMZZQ5oXLH2yaXMJ2w8e2ZtHTl7GptT4jmndRuHDT" crossorigin="anonymous">
|
||||||
|
<link href="https://fonts.googleapis.com/css2?family=Barlow&family=Cormorant+Garamond:ital@1&display=swap" rel="stylesheet">
|
||||||
|
<link rel="icon" href="../Images/logodetoure.gif" type="image/png">
|
||||||
|
<style>
|
||||||
|
body {
|
||||||
|
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>
|
||||||
|
|
||||||
|
<header class="main-header">
|
||||||
|
<div class="header-top">
|
||||||
|
<div class="logo-section">
|
||||||
|
<img src="../Images/LogoDetoure_1.gif" alt="Logo GSB" width="70">
|
||||||
|
<p class="baseline">Gestion des comptes-rendus de visites</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main class="main-content">
|
||||||
|
<h2>Connexion à l'application</h2>
|
||||||
|
|
||||||
|
<form action="authentification.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>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="mb-3">
|
||||||
|
<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>
|
||||||
|
|
||||||
|
<button type="submit" class="btn btn-primary">Se connecter</button>
|
||||||
|
</form>
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="main-footer">
|
||||||
|
<p>© 2025 - GSB Application</p>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
@@ -0,0 +1,48 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="fr">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<title>GSB Application - Accueil</title>
|
||||||
|
<link rel="stylesheet" href="../Styles\style.css">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.6/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-4Q6Gf2aSP4eDXB8Miphtr37CMZZQ5oXLH2yaXMJ2w8e2ZtHTl7GptT4jmndRuHDT" crossorigin="anonymous">
|
||||||
|
<link href="https://fonts.googleapis.com/css2?family=Barlow&family=Cormorant+Garamond:ital@1&display=swap" rel="stylesheet">
|
||||||
|
<link rel="icon" href="../Images\logodetoure.gif" type="image/png">
|
||||||
|
<style>
|
||||||
|
body {
|
||||||
|
font-family: 'Barlow', sans-serif;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<header class="main-header">
|
||||||
|
<div class="header-top">
|
||||||
|
<div class="logo-section">
|
||||||
|
<img src="../Images/LogoDetoure_1.gif" alt="Logo GSB" width="70">
|
||||||
|
<p class="baseline">Gestion des comptes-rendus de visites</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<nav class="nav-right">
|
||||||
|
<a href="../Vue/connexion.php" class="btn-connexion">Connexion</a>
|
||||||
|
</nav>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<nav class="main-nav">
|
||||||
|
<ul>
|
||||||
|
<li><a href="../Vue/agenda.php">Agenda</a></li>
|
||||||
|
<li><a href="../Vue/nouveauCompteRendu.php">Nouveau Compte-Rendu</a></li>
|
||||||
|
<li><a href="../Vue/historiqueCompteRendu.php">Historique Compte-Rendu</a></li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main class="main-content">
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="main-footer">
|
||||||
|
<p>© 2025 - GSB Application</p>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
@@ -3,9 +3,11 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<title>GSB Application - Accueil</title>
|
<title>GSB Application - Accueil</title>
|
||||||
<link rel="stylesheet" href="GSB2temp\Styles\style.css">
|
<link rel="stylesheet" href="../Styles\style.css">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.6/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-4Q6Gf2aSP4eDXB8Miphtr37CMZZQ5oXLH2yaXMJ2w8e2ZtHTl7GptT4jmndRuHDT" crossorigin="anonymous">
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Barlow&family=Cormorant+Garamond:ital@1&display=swap" rel="stylesheet">
|
<link href="https://fonts.googleapis.com/css2?family=Barlow&family=Cormorant+Garamond:ital@1&display=swap" rel="stylesheet">
|
||||||
<link rel="icon" href="GSB2temp\Images\logo.jpg" type="image/png">
|
<link rel="icon" href="../Images/LogoDetoure_1.gif" type="image/png">
|
||||||
<style>
|
<style>
|
||||||
body {
|
body {
|
||||||
font-family: 'Barlow', sans-serif;
|
font-family: 'Barlow', sans-serif;
|
||||||
@@ -13,19 +15,26 @@
|
|||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
<header class="main-header">
|
<header class="main-header">
|
||||||
<div class="logo-section">
|
<div class="header-top">
|
||||||
<img src="GSB2temp\Images\logo.jpg" alt="Logo GSB" width="70">
|
<div class="logo-section">
|
||||||
<p class="baseline">Gestion des comptes-rendus de visites</p>
|
<img src="../Images/LogoDetoure_1.gif" alt="Logo GSB" width="70">
|
||||||
|
<p class="baseline">Gestion des comptes-rendus de visites</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<nav class="nav-right">
|
||||||
|
<a href="../Vue/connexion.php" class="btn-connexion">Connexion</a>
|
||||||
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
<nav class="nav-right">
|
|
||||||
<a href="login.php" class="btn-connexion">Connexion</a>
|
|
||||||
</nav>
|
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
<main class="main-content">
|
<main class="main-content">
|
||||||
<h2>Bienvenue sur l'application de gestion de compte-rendus de visites destinés aux visiteurs médicaux</h2>
|
<h2>Bienvenue sur l'application de gestion de compte-rendus de visites destinés aux visiteurs médicaux</h2>
|
||||||
<p>Veuillez vous connecter pour accéder à l'application.</p>
|
<p>Veuillez vous connecter pour accéder à l'application.</p>
|
||||||
|
<br>
|
||||||
|
<p>Comment utiliser l'application :</p>
|
||||||
|
<embed src="https://www.codeur.com/tuto/wp-content/uploads/2022/02/pdf-test.pdf" width="800" height="500" type="application/pdf"/>
|
||||||
</main>
|
</main>
|
||||||
|
|
||||||
<footer class="main-footer">
|
<footer class="main-footer">
|
||||||
|
@@ -0,0 +1,48 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="fr">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<title>GSB Application - Accueil</title>
|
||||||
|
<link rel="stylesheet" href="../Styles\style.css">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.6/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-4Q6Gf2aSP4eDXB8Miphtr37CMZZQ5oXLH2yaXMJ2w8e2ZtHTl7GptT4jmndRuHDT" crossorigin="anonymous">
|
||||||
|
<link href="https://fonts.googleapis.com/css2?family=Barlow&family=Cormorant+Garamond:ital@1&display=swap" rel="stylesheet">
|
||||||
|
<link rel="icon" href="../Images\logodetoure.gif" type="image/png">
|
||||||
|
<style>
|
||||||
|
body {
|
||||||
|
font-family: 'Barlow', sans-serif;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<header class="main-header">
|
||||||
|
<div class="header-top">
|
||||||
|
<div class="logo-section">
|
||||||
|
<img src="../Images/LogoDetoure_1.gif" alt="Logo GSB" width="70">
|
||||||
|
<p class="baseline">Gestion des comptes-rendus de visites</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<nav class="nav-right">
|
||||||
|
<a href="../Vue/connexion.php" class="btn-connexion">Connexion</a>
|
||||||
|
</nav>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<nav class="main-nav">
|
||||||
|
<ul>
|
||||||
|
<li><a href="../Vue/agenda.php">Agenda</a></li>
|
||||||
|
<li><a href="../Vue/nouveauCompteRendu.php">Nouveau Compte-Rendu</a></li>
|
||||||
|
<li><a href="../Vue/historiqueCompteRendu.php">Historique Compte-Rendu</a></li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main class="main-content">
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="main-footer">
|
||||||
|
<p>© 2025 - GSB Application</p>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
Reference in New Issue
Block a user