diff --git a/Frontend/src/app/components/auth/registration/registration.component.css b/Frontend/src/app/components/auth/registration/registration.component.css
index e69de29..08f1877 100644
--- a/Frontend/src/app/components/auth/registration/registration.component.css
+++ b/Frontend/src/app/components/auth/registration/registration.component.css
@@ -0,0 +1,76 @@
+.main-content{
+ width: 50%;
+ border-radius: 20px;
+ box-shadow: 0 5px 5px rgba(0,0,0,.4);
+ margin: 5em auto;
+ display: flex;
+}
+.company__info{
+ background-color: #008080;
+ border-top-left-radius: 20px;
+ border-bottom-left-radius: 20px;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ color: #fff;
+}
+.fa-android{
+ font-size:3em;
+}
+@media screen and (max-width: 640px) {
+ .main-content{width: 90%;}
+ .company__info{
+ display: none;
+ }
+ .login_form{
+ border-top-left-radius:20px;
+ border-bottom-left-radius:20px;
+ }
+}
+@media screen and (min-width: 642px) and (max-width:800px){
+ .main-content{width: 70%;}
+}
+.row > h2{
+ color:#008080;
+}
+.login_form{
+ background-color: #fff;
+ border-top-right-radius:20px;
+ border-bottom-right-radius:20px;
+ border-top:1px solid #ccc;
+ border-right:1px solid #ccc;
+}
+form{
+ padding: 0 2em;
+}
+.form__input{
+ width: 100%;
+ border:0px solid transparent;
+ border-radius: 0;
+ border-bottom: 1px solid #aaa;
+ padding: 1em .5em .5em;
+ padding-left: 2em;
+ outline:none;
+ margin:1.5em auto;
+ transition: all .5s ease;
+}
+.form__input:focus{
+ border-bottom-color: #008080;
+ box-shadow: 0 0 5px rgba(0,80,80,.4);
+ border-radius: 4px;
+}
+.btn_signin{
+ transition: all .5s ease;
+ width: 70%;
+ border-radius: 30px;
+ color:#008080;
+ font-weight: 600;
+ background-color: #fff;
+ border: 1px solid #008080;
+ margin-top: 1.5em;
+ margin-bottom: 1em;
+}
+.btn_signin:hover, .btn:focus{
+ background-color: #008080;
+ color:#fff;
+}
diff --git a/Frontend/src/app/components/auth/registration/registration.component.html b/Frontend/src/app/components/auth/registration/registration.component.html
index d2f7abe..b752579 100644
--- a/Frontend/src/app/components/auth/registration/registration.component.html
+++ b/Frontend/src/app/components/auth/registration/registration.component.html
@@ -1 +1,40 @@
-
registration works!
+
+
+
+
+
+
+
+
+
diff --git a/Frontend/src/app/components/auth/signin/signin.component.css b/Frontend/src/app/components/auth/signin/signin.component.css
index b039feb..08f1877 100644
--- a/Frontend/src/app/components/auth/signin/signin.component.css
+++ b/Frontend/src/app/components/auth/signin/signin.component.css
@@ -1,9 +1,76 @@
-mat-card {
- max-width: 400px;
- margin: 2em auto;
- text-align: center;
+.main-content{
+ width: 50%;
+ border-radius: 20px;
+ box-shadow: 0 5px 5px rgba(0,0,0,.4);
+ margin: 5em auto;
+ display: flex;
}
-
-mat-form-field {
- display: block;
+.company__info{
+ background-color: #008080;
+ border-top-left-radius: 20px;
+ border-bottom-left-radius: 20px;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ color: #fff;
+}
+.fa-android{
+ font-size:3em;
+}
+@media screen and (max-width: 640px) {
+ .main-content{width: 90%;}
+ .company__info{
+ display: none;
+ }
+ .login_form{
+ border-top-left-radius:20px;
+ border-bottom-left-radius:20px;
+ }
+}
+@media screen and (min-width: 642px) and (max-width:800px){
+ .main-content{width: 70%;}
+}
+.row > h2{
+ color:#008080;
+}
+.login_form{
+ background-color: #fff;
+ border-top-right-radius:20px;
+ border-bottom-right-radius:20px;
+ border-top:1px solid #ccc;
+ border-right:1px solid #ccc;
+}
+form{
+ padding: 0 2em;
+}
+.form__input{
+ width: 100%;
+ border:0px solid transparent;
+ border-radius: 0;
+ border-bottom: 1px solid #aaa;
+ padding: 1em .5em .5em;
+ padding-left: 2em;
+ outline:none;
+ margin:1.5em auto;
+ transition: all .5s ease;
+}
+.form__input:focus{
+ border-bottom-color: #008080;
+ box-shadow: 0 0 5px rgba(0,80,80,.4);
+ border-radius: 4px;
+}
+.btn_signin{
+ transition: all .5s ease;
+ width: 70%;
+ border-radius: 30px;
+ color:#008080;
+ font-weight: 600;
+ background-color: #fff;
+ border: 1px solid #008080;
+ margin-top: 1.5em;
+ margin-bottom: 1em;
+}
+.btn_signin:hover, .btn:focus{
+ background-color: #008080;
+ color:#fff;
}
diff --git a/Frontend/src/app/components/auth/signin/signin.component.html b/Frontend/src/app/components/auth/signin/signin.component.html
index d8288d5..0a415c6 100644
--- a/Frontend/src/app/components/auth/signin/signin.component.html
+++ b/Frontend/src/app/components/auth/signin/signin.component.html
@@ -1,23 +1,34 @@
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Frontend/src/app/components/auth/signin/signin.component.ts b/Frontend/src/app/components/auth/signin/signin.component.ts
index 0bd3040..e497f15 100644
--- a/Frontend/src/app/components/auth/signin/signin.component.ts
+++ b/Frontend/src/app/components/auth/signin/signin.component.ts
@@ -1,13 +1,12 @@
import { Component, OnInit } from '@angular/core';
@Component({
- selector: 'app-signin',
- templateUrl: './signin.component.html',
- styleUrls: ['./signin.component.css']
+ selector: 'app-signin',
+ templateUrl: './signin.component.html',
+ styleUrls: ['./signin.component.css']
})
+
export class SigninComponent implements OnInit {
- form: any;
- loginInvalid: any;
constructor() { }
@@ -15,6 +14,6 @@ export class SigninComponent implements OnInit {
}
onSubmit() {
-
+
}
}
diff --git a/Frontend/src/index.html b/Frontend/src/index.html
index ec3a1e6..80189a5 100644
--- a/Frontend/src/index.html
+++ b/Frontend/src/index.html
@@ -6,11 +6,16 @@
-
-
+
+
+
+
+
+
+
- Loading...
+ LOADING