Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump jszip from 3.5.0 to 3.10.1 #16

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 4 additions & 10 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

49 changes: 46 additions & 3 deletions src/app/auth/login/login.component.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.login-wrapper {
display: grid;
display: grid;
grid-gap: 20px;
grid-template-columns: repeat(2, 1fr);
margin-top: -5rem !important;
Expand All @@ -17,17 +17,60 @@
}


img{
.image{
margin-top: 50px;
float: right;
width: 100%;
height: 100%;
}

@media only screen and (max-width: 600px){
@media only screen and (max-width: 950px){
.login-wrapper{
margin: 5rem;
grid-template-columns: 1fr;
}
.form{
order: 1;
}
.form-control{
min-width: 325px;
justify-content: center;
align-items:center;
}
.image{
min-width: 380px;
min-height: 380px;
justify-self: center;
margin-left: -60px;
}
}

.form-control{
max-width: 500px;
margin-left: 0px;
}

@media (max-width:1000px){
.form-control{
max-width: 400px;
}
.form{
margin-top: 70px;
}
.image{
min-width: 420px;
min-height: 420px;
}
}

@media (max-width: 800px) {
.form-control{
max-width: 300px;
}
}

@media (max-width:1200px){
.form{
margin-top: 50px;
}
}
10 changes: 6 additions & 4 deletions src/app/auth/login/login.component.html
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
<div class="login-wrapper">
<img class="image" src="assets/images/login.png" alt="">
<div class="form">
<form [formGroup]="form" (submit)="onLogin()">
<div class="form-group">
<label for="email">Email address</label>
<label style="margin-top: 30px" id="emailTitle" for="email">Email address</label>
<input type="email" class="form-control" id="email" formControlName="email" aria-describedby="emailHelp" placeholder="Enter email">
<small id="emailHelp" class="form-text text-muted">We'll never share your email with anyone else.</small>
</div>
<div class="form-group">
<label for="password">Password</label>
<br>
<div class="form-group" >
<label class="pass" for="password">Password</label>
<input type="password" class="form-control" id="password" formControlName="password" placeholder=" Enter Password">
</div>

Expand All @@ -17,6 +19,6 @@
<p>Do not have a account with us❓</p>
<a class="btn" routerLink="/signup">Sign Up</a>
</div>
<img src="assets/images/login.png" alt="">


</div>