Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am miyamotodev123 on github.
  • I am kmiyamoto (https://keybase.io/kmiyamoto) on keybase.
  • I have a public key ASC_hAj0SX345Rd46nryGey7Ddjc-n7SzcM3TSGthUfPuQo

To claim this, I am signing this object:

<div class="col-sm-6 col-sm-offset-3">
<h1><span class="fa fa-sign-in"></span> Signup</h1>
<!-- SIGNUP FORM -->
<form ng-submit="signup.signup()" ng-controller="SignupController as signup">
<div class="form-group">
<label>Email</label>
<input type="text" class="form-control" ng-model="signup.email">
</div>
<!doctype html>
<html ng-app="app">
<head>
<title>Node Authentication</title>
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.2/css/bootstrap.min.css">
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular-route.min.js"></script>
<script src="js/app.js"></script>
<div class="col-sm-6 col-sm-offset-3">
<h1><span class="fa fa-sign-in"></span> Login</h1>
<div growl></div>
<!-- LOGIN FORM -->
<form ng-submit="login.login()" ng-controller="LoginControllerTwo as login">
<div class="form-group">
<label>Email</label>
<div class="col-sm-6 col-sm-offset-3">
<h1><span class="fa fa-sign-in"></span> Login</h1>
<!-- LOGIN FORM -->
<form ng-submit="login.login()" ng-controller="LoginControllerTwo as login">
<div class="form-group">
<label>Email</label>
<input type="text" class="form-control" ng-model="login.email">
</div>
(function() {
angular.module('app')
.controller('LoginController', ['$location', 'AuthService',
function($location, AuthService) {
var vm = this;
vm.login = function() {
var login_data = {
email: vm.email,
password: vm.password
(function() {
angular.module('app')
// injected 'growl' as a dependency to be used by the LoginController
.controller('LoginController', ['$location', 'AuthService', 'growl',
function($location, AuthService, growl) {
var vm = this;
vm.login = function() {
var login_data = {
email: vm.email,
// defining our angular app, the first arguement is the name of our application
// second argument is an array that loads the dependencies into the application
(function() {
angular.module('app', ['ngRoute', 'angular-growl']);
})();
(function() {
/**
* angular-growl - v0.4.0 - 2013-11-19
* https://github.com/marcorinck/angular-growl
* Copyright (c) 2013 Marco Rinck; Licensed MIT
*/
angular.module('angular-growl', []);
angular.module('angular-growl').directive('growl', [
'$rootScope',
function ($rootScope) {
<!doctype html>
<html ng-app="app">
<head>
<title>Node Authentication</title>
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.2/css/bootstrap.min.css">
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular-route.min.js"></script>
<script src="lib/growl.js"></script>