-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
52786b7
commit 750719f
Showing
6 changed files
with
61 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
66 changes: 49 additions & 17 deletions
66
src/app/modules/modals/restricted-modal/restricted-modal.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,52 @@ | ||
|
||
<div class="modal-header align-items-center justify-content-end pb-0"> | ||
<div class="close" data-bs-dismiss="modal" (click)="closeModal()" aria-label="Close"> | ||
<span></span> | ||
<span></span> | ||
</div> | ||
<div | ||
class="close" | ||
data-bs-dismiss="modal" | ||
(click)="closeModal()" | ||
aria-label="Close" | ||
> | ||
<span></span> | ||
<span></span> | ||
</div> | ||
</div> | ||
<div class="d-flex justify-content-center"> | ||
<div class="d-flex flex-column justify-content-center gap-3 col-12 col-md-5 form"> | ||
<div class="modal-body d-flex flex-column gap-3 pt-0"> | ||
<img src="../../../../assets/img/icon/lock-color.svg" alt="Lock"> | ||
<h2 class="modal-title">Acceso restringido</h2> | ||
<p>Regístrate para subir, etregar y ver soluciones a los retos</p> | ||
</div> | ||
<div class="modal-footer d-flex flex-column gap-3 mb-3"> | ||
<button type="submit" class="btn btn-primary w-100"(click)="openRegisterModal()">Registrarme</button> | ||
<button type="submit" class="btn btn-outline-primary w-100" (click)="openLoginModal()">Entrar</button> | ||
</div> | ||
</div> | ||
</div> | ||
<div | ||
class="d-flex flex-column justify-content-center gap-3 col-12 col-md-5 form" | ||
> | ||
<div class="modal-body d-flex flex-column gap-3 pt-0"> | ||
<img src="../../../../assets/img/icon/lock-color.svg" alt="Lock" /> | ||
<h2 class="modal-title"> | ||
{{ | ||
"modules.modals.restricted.modalTitleRestricted" | translate | ||
}} | ||
</h2> | ||
|
||
<p> | ||
<!-- Regístrate para subir, etregar y ver soluciones a los retos --> | ||
{{ | ||
"modules.modals.restricted.modalTitleRestricted" | translate | ||
}} | ||
</p> | ||
</div> | ||
<div class="modal-footer d-flex flex-column gap-3 mb-3"> | ||
<button | ||
type="submit" | ||
class="btn btn-primary w-100" | ||
(click)="openRegisterModal()" | ||
> | ||
{{ | ||
"modules.modals.restricted.registerButton" | translate | ||
}} | ||
</button> | ||
<button | ||
type="submit" | ||
class="btn btn-outline-primary w-100" | ||
(click)="openLoginModal()" | ||
> | ||
{{ | ||
"modules.modals.restricted.enterButton" | translate | ||
}} | ||
</button> | ||
</div> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters