diff --git a/components/signIn/index.html b/components/signIn/index.html index 629d1c1..c0efed7 100644 --- a/components/signIn/index.html +++ b/components/signIn/index.html @@ -14,13 +14,17 @@
diff --git a/components/signIn/style.css b/components/signIn/style.css index 4a8ef52..ec409bf 100644 --- a/components/signIn/style.css +++ b/components/signIn/style.css @@ -148,6 +148,7 @@ h2{ label{ margin-top: 1rem; + margin-right: 1.5rem; font-size: .85rem; } @@ -166,3 +167,16 @@ input[type=submit]:hover{ cursor: pointer; } +a span { + font-weight: 300 !important; + +} + +span{ + font-size: 1rem; + margin-right: .2rem; +} + +div{ + margin-top: 1rem; +} diff --git a/components/signIn_2/app.js b/components/signIn_2/app.js new file mode 100644 index 0000000..95c30a8 --- /dev/null +++ b/components/signIn_2/app.js @@ -0,0 +1,13 @@ +console.log("Hello World!") + +const signUpButton = document.getElementById('signUp'); +const signInButton = document.getElementById('signIn'); +const container = document.getElementById('container'); + +signUpButton.addEventListener('click', () => { + container.classList.add("right-panel-active"); +}); + +signInButton.addEventListener('click', () => { + container.classList.remove("right-panel-active"); +}); \ No newline at end of file diff --git a/components/signIn_2/index.html b/components/signIn_2/index.html new file mode 100644 index 0000000..1bc0722 --- /dev/null +++ b/components/signIn_2/index.html @@ -0,0 +1,59 @@ + + +
+ + +
+ + + +
+