diff --git a/connexion.html b/connexion.html index e472b30..87c1223 100644 --- a/connexion.html +++ b/connexion.html @@ -8,7 +8,7 @@ - +
@@ -33,6 +33,7 @@
+ \ No newline at end of file diff --git a/css/menu.css b/css/menu.css index 8d0c51d..eeae68f 100644 --- a/css/menu.css +++ b/css/menu.css @@ -1,8 +1,14 @@ +#blockMenu +{ + float: right; + width: 95%; +} + #lineMenu { list-style-type: none; overflow: hidden; - background-color: #0064b5; + background-color: #0073be; height: 49px; margin: 0px; padding: 0px; @@ -15,42 +21,31 @@ padding: 14px 20px; background-color: transparent; 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; } .animationButtonMenu:hover { - background-color: #0073be; + background-color: #197abb; font-size: 19px; padding: 13px 17px; } -aMenu +.aMenu { color: white; text-decoration: none; } - -#lineSign -{ - list-style-type: none; - overflow: hidden; - background-color: #0073be; - height: 35px; - margin: 0px; - padding: 0px; -} - .colonneSign { float: right; - font-size: 15px; - padding: 10px 8px; + font-size: 17px; + padding: 14px 20px; background-color: transparent; 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; } @@ -69,3 +64,24 @@ aMenu { width: 100%; } + + +#blockLogo +{ + float: left; + width: 5%; +} + +#logo +{ + width: 100%; + height: 110px; +} + +#blockDeco +{ + width: 95%; + height: 10px; + float: right; + background-color: #5496c2; +} diff --git a/img/logo.jpg b/img/logo.jpg new file mode 100644 index 0000000..52745c0 Binary files /dev/null and b/img/logo.jpg differ diff --git a/img/logoV2.jpg b/img/logoV2.jpg new file mode 100644 index 0000000..5bd23ab Binary files /dev/null and b/img/logoV2.jpg differ diff --git a/inscription.html b/inscription.html index c9b456f..6a5fb20 100644 --- a/inscription.html +++ b/inscription.html @@ -8,7 +8,7 @@ - +
@@ -31,7 +31,7 @@
- +
diff --git a/menu.html b/menu.html index 5744fbf..46972a1 100644 --- a/menu.html +++ b/menu.html @@ -5,33 +5,33 @@ + - -
- + +
\ No newline at end of file diff --git a/sql/createSchema.sql b/sql/createSchema.sql index f84bdd0..5d0bd76 100644 --- a/sql/createSchema.sql +++ b/sql/createSchema.sql @@ -108,7 +108,10 @@ CREATE TABLE bddsurf.ville idVille INT NOT NULL PRIMARY KEY, -- primary key column nomVille 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 ); GO @@ -124,7 +127,10 @@ CREATE TABLE bddsurf.historique idHistorique INT NOT NULL PRIMARY KEY, -- primary key column utilisateur 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 ); GO