diff --git a/frontend/src/App.vue b/frontend/src/App.vue index a9d7a8a..64a173a 100644 --- a/frontend/src/App.vue +++ b/frontend/src/App.vue @@ -34,9 +34,9 @@
  • - +
    -
  • + @@ -112,7 +112,7 @@ transition-duration: .3s; } - li a{ + .item,li a{ display: flex; padding: 8px 16px; color:rgb(255, 255, 255); @@ -159,7 +159,8 @@ } - ul.horizontal li a:hover:not(.active){ + ul.horizontal .item:hover, li a:hover:not(.active){ + background-color: black; border-radius:6px; color:white; diff --git a/frontend/src/Login.vue b/frontend/src/Login.vue index d3a0532..37d885a 100644 --- a/frontend/src/Login.vue +++ b/frontend/src/Login.vue @@ -4,23 +4,29 @@ const login= ref(true) const page = ref(0) - const emailIN=ref("") + const emailID=ref("") const passwordIN=ref("") + const surname=ref("") const firstname=ref("") const passwordOUT=ref("") const emailOUT=ref("") const address=ref("") const country=ref("") - - const inputs = [emailIN,passwordIN] - const outputs= [surname,firstname,passwordOUT,emailOUT,address,country] + const cursus=ref("") + const inputs = [{_emailID:emailID},{_passwordIN:passwordIN}] + const outputs= [{_surname:surname},{_firstname:firstname},{_passwordOUT:passwordOUT},{_emailOUT:emailOUT},{_address:address},{_country:country},{_cursus:cursus}]