Skip to content

Instantly share code, notes, and snippets.

View avatsaev's full-sized avatar

Aslan Vatsaev avatsaev

  • Lead GenAI software engineer at Edenred
  • Paris
  • X @avatsaev
View GitHub Profile
import {Component, OnInit, Output, EventEmitter} from '@angular/core';
import {AuthService} from "../services/auth.service";
@Component({
selector: 'app-login-form',
templateUrl: './login-form.component.html',
styleUrls: ['./login-form.component.sass']
})
export class LoginFormComponent implements OnInit {
<!--Navigation-->
<div class="navbar-fixed">
<nav role="navigation">
<div class="nav-wrapper blue ">
<a [routerLink]="['']" id="logo-container" class="brand-logo">Rails & Angular Auth</a>
<ul class="right hide-on-med-and-down">
import {Component, OnInit, ViewChild} from '@angular/core';
import {AuthDialogComponent} from "../auth-dialog/auth-dialog.component";
import {AuthService} from "../services/auth.service";
import {Router} from "@angular/router";
@Component({
selector: 'app-toolbar',
templateUrl: './toolbar.component.html',
styleUrls: ['./toolbar.component.sass']
})
import { Injectable } from '@angular/core';
import {Angular2TokenService} from "angular2-token";
import {Subject, Observable} from "rxjs";
import {Response} from "@angular/http";
@Injectable()
export class AuthService {
userSignedIn$:Subject<boolean> = new Subject();
<div class="navbar-fixed">
<nav role="navigation">
<div class="nav-wrapper blue ">
<a [routerLink]="['']" id="logo-container" class="brand-logo">Rails & Angular Auth</a>
<ul class="right hide-on-med-and-down">
<li> <a (click)="presentAuthDialog()" >LOGIN</a></li>
<!--Navigation-->
<div class="navbar-fixed">
<nav role="navigation">
<div class="nav-wrapper blue ">
<a [routerLink]="['']" id="logo-container" class="brand-logo">Rails & Angular Auth</a>
<ul class="right hide-on-med-and-down">
import {Component, OnInit, ViewChild} from '@angular/core';
import {AuthDialogComponent} from "../auth-dialog/auth-dialog.component";
import {Angular2TokenService} from "angular2-token";
@Component({
selector: 'app-toolbar',
templateUrl: './toolbar.component.html',
styleUrls: ['./toolbar.component.sass']
})
export class ToolbarComponent implements OnInit {
<div class="modal" materialize="modal" [materializeActions]="modalActions">
<div class="modal-content">
<div class="row">
<div class="row">
import {Component, OnInit, Input, EventEmitter} from '@angular/core';
import {MaterializeAction} from "angular2-materialize";
@Component({
selector: 'app-auth-dialog',
templateUrl: './auth-dialog.component.html',
styleUrls: ['./auth-dialog.component.sass']
})
export class AuthDialogComponent implements OnInit {
import {Component, OnInit, EventEmitter, Output} from '@angular/core';
import {Angular2TokenService} from "angular2-token";
@Component({
selector: 'app-register-form',
templateUrl: './register-form.component.html',
styleUrls: ['./register-form.component.sass']
})
export class RegisterFormComponent implements OnInit {