Merge branch 'dev' of https://github.com/RomainVgr/simpleat into dev
This commit is contained in:
commit
334f799c60
@ -1,4 +1,4 @@
|
||||
<app-search-bar></app-search-bar>
|
||||
<app-nav-bar></app-nav-bar>
|
||||
<app-search-bar *ngIf="dontShow"></app-search-bar>
|
||||
<app-nav-bar *ngIf="dontShow"></app-nav-bar>
|
||||
<router-outlet></router-outlet>
|
||||
<app-footer></app-footer>
|
||||
<app-footer *ngIf="dontShow"></app-footer>
|
||||
|
@ -1,4 +1,5 @@
|
||||
import { Component } from '@angular/core';
|
||||
import { NavigationEnd, Router } from '@angular/router';
|
||||
|
||||
@Component({
|
||||
selector: 'app-root',
|
||||
@ -7,4 +8,19 @@ import { Component } from '@angular/core';
|
||||
})
|
||||
export class AppComponent {
|
||||
title = 'simpleat';
|
||||
dontShow: boolean = false;
|
||||
|
||||
constructor(private router:Router){
|
||||
this.router.events.subscribe(e=>{
|
||||
//console.log(e);
|
||||
if(e instanceof NavigationEnd){
|
||||
console.log(e.url)
|
||||
if (e.url == "/signin") {
|
||||
this.dontShow = false;
|
||||
} else {
|
||||
this.dontShow = true;
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
|
@ -2,14 +2,14 @@
|
||||
style="width: 22rem;">
|
||||
<img class="card-img-top " src="assets/ImagesRestos/photo.jpg" alt="Card image cap">
|
||||
<div class="rond position-absolute">
|
||||
<app-icon class="heart"
|
||||
[iconName]="isLiked ? 'heart-fill' : 'heart'"
|
||||
[iconColor]="'#e35d6a'"
|
||||
<app-icon class="heart"
|
||||
[iconName]="isLiked ? 'heart-fill' : 'heart'"
|
||||
[iconColor]="'#e35d6a'"
|
||||
(click)="onClickLike()"></app-icon></div>
|
||||
<div class="card-body rounded-bottom">
|
||||
<h3 class="titre-resto d-flex justify-content-center d-flex align-items-center" style="font-size: 24px;">
|
||||
{{restaurant.nom }}</h3>
|
||||
|
||||
|
||||
<div class="accordion " id="accordionExample">
|
||||
<h2 class="accordion-header pt-1" id="headingOne">
|
||||
<button class="btn shadow accordion-button collapsed ps-5 pe-5 " type="button" data-bs-toggle="collapse"
|
||||
@ -35,48 +35,48 @@
|
||||
</div>
|
||||
<div class="trait-rouge pt-3"></div>
|
||||
<div class="infos pt-2" style="color:#545454">
|
||||
|
||||
|
||||
<i class="fas fa-walking ps-2 pe-2" style="color:#a8a8a8"></i>
|
||||
<span class="categorie pe-2" style="font-weight: bold;">{{distance}}m</span>
|
||||
|
||||
|
||||
|
||||
|
||||
<i class="fas fa-euro-sign ps-2 pe-2" style="color:#a8a8a8"></i>
|
||||
<span class="prix" style="font-weight: bold;">5-10€</span>
|
||||
|
||||
|
||||
<div class="d-inline-flex" *ngIf="restaurant.website; else noWebsite">
|
||||
<p class="description pt-3 ps-2 pe-1"><i class="bi bi-globe2 ps-2 pe-2" style="color:#a8a8a8"></i>
|
||||
<a href="{{restaurant.website}}" class="description text-decoration-none pe-1" style="font-style: italic;font-weight: bold; color:#545454">Site Web</a>
|
||||
|
||||
|
||||
</p>
|
||||
</div>
|
||||
<!-- le else de notre *ngIf plus haut-->
|
||||
<ng-template #noWebsite>
|
||||
<div class="d-inline-flex">
|
||||
<div class="d-inline-flex">
|
||||
<p class="description pt-3 ps-3 pe-1 " style="font-size:1.9vh ;color:#545454"> Pas de site Web </p>
|
||||
</div>
|
||||
</ng-template>
|
||||
<!-- ------------------------------------ -->
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="trait-rouge pt-2 pb-0"></div>
|
||||
<div class="critere ps-1 pt-3">
|
||||
<span class="sur-place pe-3" style="color:#545454">Sur place :</span>
|
||||
<app-icon
|
||||
<span class="sur-place pe-3" style="color:#545454">Sur place :</span>
|
||||
<app-icon
|
||||
[iconName]="restaurant.surPlace ? 'bi bi-check-square-fill' : 'bi bi-x-square-fill ps-2 pt-1 '"
|
||||
[iconColor]="restaurant.surPlace ? '#4ECB71' : '#ED2F2F'"
|
||||
></app-icon>
|
||||
<span class="a-emporter pe-2 ps-4 " style="color:#545454">A emporter :</span>
|
||||
<app-icon
|
||||
[iconName]="restaurant.emporter ? 'bi bi-check-square-fill' : 'bi bi-x-square-fill ps-2 pt-1'"
|
||||
[iconColor]="restaurant.emporter ? '#4ECB71' : '#ED2F2F'"
|
||||
<span class="a-emporter pe-2 ps-4 " style="color:#545454">A emporter :</span>
|
||||
<app-icon
|
||||
[iconName]="restaurant.aEmporter ? 'bi bi-check-square-fill' : 'bi bi-x-square-fill ps-2 pt-1'"
|
||||
[iconColor]="restaurant.aEmporter ? '#4ECB71' : '#ED2F2F'"
|
||||
></app-icon>
|
||||
</div>
|
||||
<div class="trait-rouge pt-3"></div>
|
||||
<div class="critere d-flex justify-content-center ps-1 pt-3 pb-3">
|
||||
<span class="acces-pmr pe-1" style="color:#545454">Accès PMR :</span>
|
||||
|
||||
<app-icon
|
||||
|
||||
<app-icon
|
||||
[iconName]="restaurant.accesPMR ? 'bi bi-check-square-fill' : 'bi bi-x-square-fill ps-1 pt-1'"
|
||||
[iconColor]="restaurant.accesPMR ? '#4ECB71' : '#ED2F2F'"
|
||||
></app-icon>
|
||||
@ -86,4 +86,4 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -1,14 +1,14 @@
|
||||
<footer class="d-flex">
|
||||
|
||||
<div class = "logo d-inline-flex align-items-center p-4">
|
||||
<img src="../../assets/Logo_footer.png">
|
||||
</div>
|
||||
<div class = "logo d-inline-flex align-items-center">
|
||||
<img src="../../assets/Logo_footer.png">
|
||||
</div>
|
||||
|
||||
<div class="liens d-flex justify-content-end align-items-center">
|
||||
<h5>Aide</h5>
|
||||
<h5>Contact</h5>
|
||||
<h5>Administrateurs</h5>
|
||||
<h5>Mentions legales</h5>
|
||||
</div>
|
||||
<div class="liens d-flex justify-content-end align-items-center">
|
||||
<h5>Aide</h5>
|
||||
<h5>Contact</h5>
|
||||
<h5>Administrateurs</h5>
|
||||
<h5>Mentions legales</h5>
|
||||
</div>
|
||||
|
||||
</footer>
|
||||
</footer>
|
||||
|
@ -1,5 +1,5 @@
|
||||
<div class="signin-form text-center">
|
||||
<main class="form-signin">
|
||||
<main class="form-signin d-inline-flex">
|
||||
<form (ngSubmit)="onSubmit(signinForm)" #signinForm="ngForm">
|
||||
<h5>Merci de vous connecter</h5>
|
||||
<img src="../../../assets/images-header/logo.png"><br>
|
||||
@ -32,12 +32,12 @@
|
||||
<button class="w-100 btn btn-lg btn-danger"
|
||||
type="submit"
|
||||
[disabled]="signinForm.invalid">Je me connecte !</button>
|
||||
<p>
|
||||
<!--<p>
|
||||
Form is dirty : {{ signinForm.form.dirty }}
|
||||
</p>
|
||||
<p>
|
||||
Form is touched : {{ signinForm.form.touched }}
|
||||
</p>
|
||||
</p>-->
|
||||
</form>
|
||||
|
||||
<div *ngIf="errorForm">
|
||||
|
@ -1,19 +1,18 @@
|
||||
.signin-form {
|
||||
height: 100vh;
|
||||
padding-top: 40px;
|
||||
background-image: url(../../../assets/fond_signin.png);
|
||||
background-image: url(../../../assets/fond-signin.png);
|
||||
background-position: center;
|
||||
}
|
||||
|
||||
.form-signin {
|
||||
width: 500px;
|
||||
//max-width: 330px;
|
||||
max-width: 500px;
|
||||
padding: 15px;
|
||||
margin: auto;
|
||||
margin-top: 20vh;
|
||||
background-color: #f0f0f0;
|
||||
border-radius: 15px;
|
||||
box-shadow: 10px 10px 10px grey;
|
||||
margin-top: 25vh;
|
||||
}
|
||||
|
||||
.form-floating:focus-within {
|
||||
|
BIN
src/assets/fond-signin.png
Normal file
BIN
src/assets/fond-signin.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 681 KiB |
Loading…
Reference in New Issue
Block a user