get info of a slide and show it. Sanitize html from description field and add it to the scope
(function(){
'use strict';
angular.module('ammicoAuth',['ngRoute'])
.config(function ($routeProvider) {
$routeProvider
.when('/', {
templateUrl: 'auth/auth.html',
controller: 'authCtrl'
});
})
.controller('authCtrl', function(){
});
})();