-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
10 changed files
with
51 additions
and
38 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
*{ | ||
font-family: Roboto, sans-serif; | ||
.header{ | ||
margin: 1vh 0; | ||
} | ||
.sebm-google-map-container { | ||
height: 300px; | ||
|
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,23 +1,26 @@ | ||
|
||
<nav class="navbar navbar-default"> | ||
<div class="container-fluid"> | ||
<div class="navbar-header"> | ||
<h1> | ||
{{title}} | ||
</h1> | ||
</div> | ||
<div *ngIf="isLoggedIn" class="collapse navbar-collapse" id="bs-example-navbar-collapse-1"> | ||
<ul class="nav navbar-nav navbar-right"> | ||
<li><a class="btn" (click)="logout()">Logout</a></li> | ||
<div class="container"> | ||
<div class="header clearfix"> | ||
<nav> | ||
<ul class="nav nav-pills float-right"> | ||
<li class="nav-item" *ngIf="!isLoggedIn"> | ||
<a class="nav-link active" href="javascript://" (click)="login()">Entrar</a> | ||
</li> | ||
<li class="nav-item" *ngIf="isLoggedIn"> | ||
<a class="nav-link" href="javascript://" (click)="logout()">Salir</a> | ||
</li> | ||
</ul> | ||
</div> | ||
</nav> | ||
<h3 class="text-muted">{{title}}</h3> | ||
</div> | ||
</nav> | ||
|
||
<sebm-google-map [latitude]="lat" [longitude]="lng"> | ||
<sebm-google-map-marker [latitude]="lat" [longitude]="lng"></sebm-google-map-marker> | ||
</sebm-google-map> | ||
<sebm-google-map [latitude]="lat" [longitude]="lng"> | ||
<sebm-google-map-marker [latitude]="lat" [longitude]="lng"></sebm-google-map-marker> | ||
</sebm-google-map> | ||
|
||
<div class="app-content"> | ||
<router-outlet></router-outlet> | ||
<hr> | ||
<footer class="footer text-center"> | ||
<p>© El Rico Dato 2017</p> | ||
</footer> | ||
|
||
</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
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,6 +1,6 @@ | ||
<div class="modal-dialog"> | ||
<div class="loginmodal-container"> | ||
<h1>Ingresar</h1><br> | ||
<h1>Ingresar</h1> | ||
<button class="login loginmodal-submit" (click)="login()">Entrar con Google</button> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
<form> | ||
<h3>Ingresar Restaurant</h3> | ||
|
||
<input #restName type="text" placeholder="Nombre Restaurant" ><br> | ||
<input #restPicture type="text" placeholder="Foto Restaurant" ><br> | ||
<input #restLat type="text" placeholder="Latitud" ><br> | ||
<input #restLong type="text" placeholder="Longitud" ><br> | ||
<input #restName type="text" class="form-control" placeholder="Nombre Restaurant" ><br> | ||
<input #restPicture type="text" class="form-control" placeholder="Foto Restaurant" ><br> | ||
<input #restLat type="hidden" class="form-control" placeholder="Latitud" ><br> | ||
<input #restLong type="hidden" class="form-control" placeholder="Longitud" ><br> | ||
</form> |
Large diffs are not rendered by default.
Oops, something went wrong.
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