Skip to content

Commit

Permalink
Adiciona botão para ativar conta no login
Browse files Browse the repository at this point in the history
Signed-off-by: DaviMarinho <[email protected]>
  • Loading branch information
DaviMarinho committed Nov 16, 2023
1 parent 9813671 commit 2fdd4ac
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions src/app/pages/login/login.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,16 @@
<div class="mb-4">
<input pInputText class="w-64 h-8 border rounded-lg border-gray-300 pl-4 md:w-96 md:h-10" type="password" formControlName="password" name="password" placeholder="Senha" required>
</div>
<div class="flex justify-start items-center text-gray-400 pl-4" (click)="navigator('/sendCodeResetPassword')">
Esqueceu a senha?
<div class="flex row justify-between">
<div class="flex justify-start items-center text-gray-400 pl-4 cursor-pointer" (click)="navigator('/sendCodeResetPassword')">
Esqueceu a senha?
</div>
<div class="flex justify-start items-center text-gray-400 pr-4 cursor-pointer" (click)="navigator('/activeAccount')">
Ativar conta
</div>
</div>
<button class="w-20 h-8 bg-blue-brand rounded-lg justify-center my-8 text-white md:h-10 md:w-32" type="submit">Entrar</button>
<div class="flex justify-start items-center text-blue-brand underline pl-4" (click)="navigator('/register')">
<div class="flex justify-start items-center text-blue-brand underline pl-4 cursor-pointer" (click)="navigator('/register')">
Cadastre-se
</div>
</form>
Expand Down

0 comments on commit 2fdd4ac

Please sign in to comment.