This commit is contained in:
unknown 2020-12-04 02:56:38 +01:00
commit 0d9c98821e
7 changed files with 59 additions and 36 deletions

View File

@ -8,7 +8,7 @@
<link rel="stylesheet" href="css/connexion.css" /> <link rel="stylesheet" href="css/connexion.css" />
</head> </head>
<body> <body>
<!--form action="" name"" method="POST"--> <form method="post" action="./traitement.php" name="formulaire">
<div class="wrapper fonduBas"> <div class="wrapper fonduBas">
<div id="contenu"> <div id="contenu">
@ -33,6 +33,7 @@
</div> </div>
<! --/form--> <! --/form-->
</form>
</body> </body>
</html> </html>

View File

@ -1,8 +1,14 @@
#blockMenu
{
float: right;
width: 95%;
}
#lineMenu #lineMenu
{ {
list-style-type: none; list-style-type: none;
overflow: hidden; overflow: hidden;
background-color: #0064b5; background-color: #0073be;
height: 49px; height: 49px;
margin: 0px; margin: 0px;
padding: 0px; padding: 0px;
@ -15,42 +21,31 @@
padding: 14px 20px; padding: 14px 20px;
background-color: transparent; background-color: transparent;
color: white; color: white;
transition: background-color 0.2s, padding 0.2s, font-size 0.2s,transform 0.2s; transition: background-color 0.1s, padding 0.1s, font-size 0.1s,transform 0.2s;
cursor: pointer; cursor: pointer;
} }
.animationButtonMenu:hover .animationButtonMenu:hover
{ {
background-color: #0073be; background-color: #197abb;
font-size: 19px; font-size: 19px;
padding: 13px 17px; padding: 13px 17px;
} }
aMenu .aMenu
{ {
color: white; color: white;
text-decoration: none; text-decoration: none;
} }
#lineSign
{
list-style-type: none;
overflow: hidden;
background-color: #0073be;
height: 35px;
margin: 0px;
padding: 0px;
}
.colonneSign .colonneSign
{ {
float: right; float: right;
font-size: 15px; font-size: 17px;
padding: 10px 8px; padding: 14px 20px;
background-color: transparent; background-color: transparent;
color: white; color: white;
transition: font-size 0.2s,transform 0.2s; transition: background-color 0.2s, padding 0.2s, font-size 0.2s,transform 0.2s;
cursor: pointer; cursor: pointer;
} }
@ -69,3 +64,24 @@ aMenu
{ {
width: 100%; width: 100%;
} }
#blockLogo
{
float: left;
width: 5%;
}
#logo
{
width: 100%;
height: 110px;
}
#blockDeco
{
width: 95%;
height: 10px;
float: right;
background-color: #5496c2;
}

BIN
img/logo.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 95 KiB

BIN
img/logoV2.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 KiB

View File

@ -8,7 +8,7 @@
<link rel="stylesheet" href="css/inscription.css" /> <link rel="stylesheet" href="css/inscription.css" />
</head> </head>
<body> <body>
<form method="post" action="./traitement.php" name="formulaire">
<div class="wrapper fonduBas"> <div class="wrapper fonduBas">
<div id="contenu"> <div id="contenu">
@ -31,7 +31,7 @@
</div> </div>
</div> </div>
</form>
</body> </body>
</html> </html>

View File

@ -5,33 +5,33 @@
<meta charset="UTF-8"> <meta charset="UTF-8">
<link rel="stylesheet" href="css/index.css"> <link rel="stylesheet" href="css/index.css">
<link rel="stylesheet" href="css/menu.css"> <link rel="stylesheet" href="css/menu.css">
<title></title>
</head> </head>
<body> <body>
<!--Block de connexion et d'inscription--> <div id="blockLogo">
<div id="blockSign"> <img id="logo" src="img/logoV2.jpg">
<ul id="lineSign">
<li class="colonneSign">
<a class="aMenu underLineHover">Connexion</a>
</li>
<li class="colonneSign">
<a class="aMenu underLineHover">Inscription</a>
</li>
</ul>
</div> </div>
<!--Block de Menu--> <!--Block de Menu-->
<nav id="blockMenu"> <nav id="blockMenu">
<ul id="lineMenu"> <ul id="lineMenu">
<li class="colonneMenu animationButtonMenu underLineHover"> <li class="colonneMenu animationButtonMenu underLineHover">
<a class="aMenu">Acceuil</a> <a class="aMenu" href="#">Acceuil</a>
</li> </li>
<li class="colonneMenu animationButtonMenu underLineHover"> <li class="colonneMenu animationButtonMenu underLineHover">
<a class="aMenu">Profil</a> <a class="aMenu" href="#">Profil</a>
</li> </li>
<li class="colonneMenu animationButtonMenu underLineHover"> <li class="colonneMenu animationButtonMenu underLineHover">
<a class="aMenu">Météo</a> <a class="aMenu" href="#">Météo</a>
</li>
<li class="colonneSign animationButtonMenu underLineHover">
<a class="aMenu" href="connexion.html">Connexion</a>
</li>
<li class="colonneSign animationButtonMenu underLineHover">
<a class="aMenu" href="inscription.html">Inscription</a>
</li> </li>
</ul> </ul>
</nav> </nav>
<div id="blockDeco"></div>
</body> </body>
</html> </html>

View File

@ -108,7 +108,10 @@ CREATE TABLE bddsurf.ville
idVille INT NOT NULL PRIMARY KEY, -- primary key column idVille INT NOT NULL PRIMARY KEY, -- primary key column
nomVille VARCHAR, nomVille VARCHAR,
cpVille VARCHAR, cpVille VARCHAR,
meteoVille INT NOT NULL meteoVille INT NOT NULL,
CONSTRAINT fk_meteoville
FOREIGN KEY (meteoVille)
REFERENCES bddsurf.meteoville(IdMeteoVille)
-- specify more columns here -- specify more columns here
); );
GO GO
@ -124,7 +127,10 @@ CREATE TABLE bddsurf.historique
idHistorique INT NOT NULL PRIMARY KEY, -- primary key column idHistorique INT NOT NULL PRIMARY KEY, -- primary key column
utilisateur INT NOT NULL, utilisateur INT NOT NULL,
spot INT NOT NULL, spot INT NOT NULL,
pointage INT NOT NULL pointage INT NOT NULL,
CONSTRAINT fk_user
FOREIGN KEY (utilisateur)
REFERENCES bddsurf.utilisateur(idUtilisateur)
-- specify more columns here -- specify more columns here
); );
GO GO