Skip to content

Commit

Permalink
Add mayus and edit
Browse files Browse the repository at this point in the history
  • Loading branch information
AntonioQuijanoB committed Apr 7, 2024
1 parent fbfc4e9 commit 9251eed
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 9 deletions.
6 changes: 6 additions & 0 deletions src/app/feature/greeting/greeting.component.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,9 @@ p {
left: 36rem;
top: 3rem;
}

@media (width <= 1000px) {
p {
visibility: hidden;
}
}
10 changes: 5 additions & 5 deletions src/app/feature/initial-form/initial-form.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ <h2>Sign in</h2>
<form [formGroup]="form" (ngSubmit)="isLogged()">
<span> Email: </span>
<label for="">
<input type="email" placeholder="email" formControlName="email" />
<input type="email" placeholder="Email" formControlName="email" />
</label>
<span> Password: </span>
<label>
<input
type="password"
placeholder="password"
placeholder="Password"
formControlName="password"
/>
</label>
Expand All @@ -18,14 +18,14 @@ <h2>Sign in</h2>
<label>
<input
type="password"
placeholder="repeat password"
placeholder="Repeat password"
formControlName="repeatpassword"
/>
</label>

<span> Username: </span>
<span>Username: </span>
<label>
<input type="text" placeholder="username" formControlName="username" />
<input type="text" placeholder="Username" formControlName="username" />
</label>
<button type="submit" [disabled]="form.invalid">Entry</button>
</form>
Expand Down
8 changes: 4 additions & 4 deletions src/app/shared/menu/menu.component.html
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<nav>
<ul>
<li>
<a routerLink="/home">Home</a>
<a routerLink="/home">HOME</a>
</li>
<li>
<a routerLink="/favorite">Favorite</a>
<a routerLink="/favorite">FAVORITE</a>
</li>
<li>
<a routerLink="/create">Create card</a>
<a routerLink="/create">CREATE CARD</a>
</li>
</ul>
</nav>
</nav>

0 comments on commit 9251eed

Please sign in to comment.