├── Procfile ├── public ├── bower_components │ ├── jquery │ │ ├── src │ │ │ ├── outro.js │ │ │ ├── selector.js │ │ │ ├── var │ │ │ │ ├── arr.js │ │ │ │ ├── rnotwhite.js │ │ │ │ ├── strundefined.js │ │ │ │ ├── push.js │ │ │ │ ├── class2type.js │ │ │ │ ├── concat.js │ │ │ │ ├── indexOf.js │ │ │ │ ├── slice.js │ │ │ │ ├── pnum.js │ │ │ │ ├── toString.js │ │ │ │ ├── hasOwn.js │ │ │ │ └── support.js │ │ │ ├── ajax │ │ │ │ ├── var │ │ │ │ │ ├── rquery.js │ │ │ │ │ └── nonce.js │ │ │ │ ├── parseJSON.js │ │ │ │ ├── parseXML.js │ │ │ │ ├── script.js │ │ │ │ └── load.js │ │ │ ├── css │ │ │ │ ├── var │ │ │ │ │ ├── rmargin.js │ │ │ │ │ ├── cssExpand.js │ │ │ │ │ ├── rnumnonpx.js │ │ │ │ │ ├── getStyles.js │ │ │ │ │ └── isHidden.js │ │ │ │ ├── hiddenVisibleSelectors.js │ │ │ │ ├── swap.js │ │ │ │ ├── addGetHookIf.js │ │ │ │ ├── curCSS.js │ │ │ │ └── defaultDisplay.js │ │ │ ├── data │ │ │ │ ├── var │ │ │ │ │ ├── data_priv.js │ │ │ │ │ └── data_user.js │ │ │ │ └── accepts.js │ │ │ ├── manipulation │ │ │ │ ├── var │ │ │ │ │ └── rcheckableType.js │ │ │ │ ├── _evalUrl.js │ │ │ │ └── support.js │ │ │ ├── core │ │ │ │ ├── var │ │ │ │ │ └── rsingleTag.js │ │ │ │ ├── parseHTML.js │ │ │ │ └── access.js │ │ │ ├── traversing │ │ │ │ └── var │ │ │ │ │ └── rneedsContext.js │ │ │ ├── event │ │ │ │ ├── support.js │ │ │ │ └── alias.js │ │ │ ├── attributes.js │ │ │ ├── deprecated.js │ │ │ ├── effects │ │ │ │ └── animatedSelector.js │ │ │ ├── selector-sizzle.js │ │ │ ├── queue │ │ │ │ └── delay.js │ │ │ ├── jquery.js │ │ │ ├── exports │ │ │ │ ├── global.js │ │ │ │ └── amd.js │ │ │ ├── attributes │ │ │ │ ├── support.js │ │ │ │ └── prop.js │ │ │ ├── intro.js │ │ │ ├── wrap.js │ │ │ └── dimensions.js │ │ ├── bower.json │ │ ├── .bower.json │ │ └── MIT-LICENSE.txt │ ├── underscore │ │ ├── .gitignore │ │ ├── bower.json │ │ ├── .editorconfig │ │ ├── component.json │ │ ├── .bower.json │ │ ├── package.json │ │ ├── LICENSE │ │ └── README.md │ ├── modernizr │ │ ├── .gitignore │ │ ├── feature-detects │ │ │ ├── css-mediaqueries.js │ │ │ ├── workers-sharedworkers.js │ │ │ ├── script-async.js │ │ │ ├── script-defer.js │ │ │ ├── cors.js │ │ │ ├── css-objectfit.js │ │ │ ├── css-shapes.js │ │ │ ├── dom-microdata.js │ │ │ ├── network-eventsource.js │ │ │ ├── audio-audiodata-api.js │ │ │ ├── es5-strictmode.js │ │ │ ├── pointerlock-api.js │ │ │ ├── dart.js │ │ │ ├── dom-classlist.js │ │ │ ├── window-framed.js │ │ │ ├── vibration.js │ │ │ ├── battery-api.js │ │ │ ├── audio-webaudio-api.js │ │ │ ├── dataview-api.js │ │ │ ├── elem-time.js │ │ │ ├── lists-reversed.js │ │ │ ├── web-intents.js │ │ │ ├── css-resize.js │ │ │ ├── elem-output.js │ │ │ ├── style-scoped.js │ │ │ ├── userdata.js │ │ │ ├── css-userselect.js │ │ │ ├── getusermedia.js │ │ │ ├── iframe-srcdoc.js │ │ │ ├── json.js │ │ │ ├── iframe-sandbox.js │ │ │ ├── iframe-seamless.js │ │ │ ├── blob-constructor.js │ │ │ ├── dom-dataset.js │ │ │ ├── css-overflow-scrolling.js │ │ │ ├── custom-protocol-handler.js │ │ │ ├── performance.js │ │ │ ├── css-boxsizing.js │ │ │ ├── contextmenu.js │ │ │ ├── requestanimationframe.js │ │ │ ├── file-filesystem.js │ │ │ ├── dom-createElement-attrs.js │ │ │ ├── css-supports.js │ │ │ ├── css-backgroundsizecover.js │ │ │ ├── a-download.js │ │ │ ├── css-lastchild.js │ │ │ ├── elem-datalist.js │ │ │ ├── forms-placeholder.js │ │ │ ├── css-cubicbezierrange.js │ │ │ ├── battery-level.js │ │ │ ├── css-filters.js │ │ │ ├── css-calc.js │ │ │ ├── ie8compat.js │ │ │ ├── network-xhr2.js │ │ │ ├── forms-fileinput.js │ │ │ ├── contenteditable.js │ │ │ ├── elem-progress-meter.js │ │ │ ├── quota-management-api.js │ │ │ ├── css-displayrunin.js │ │ │ ├── cookies.js │ │ │ ├── notification.js │ │ │ ├── emoji.js │ │ │ ├── file-api.js │ │ │ ├── css-scrollbars.js │ │ │ ├── css-positionsticky.js │ │ │ ├── svg-filters.js │ │ │ ├── img-webp.js │ │ │ ├── css-vwunit.js │ │ │ ├── css-remunit.js │ │ │ ├── fullscreen-api.js │ │ │ ├── css-backgroundposition-shorthand.js │ │ │ ├── css-vhunit.js │ │ │ ├── contentsecuritypolicy.js │ │ │ ├── css-mask.js │ │ │ ├── event-deviceorientation-motion.js │ │ │ ├── elem-track.js │ │ │ ├── websockets-binary.js │ │ │ ├── gamepad.js │ │ │ ├── css-vmaxunit.js │ │ │ ├── css-vminunit.js │ │ │ ├── url-data-uri.js │ │ │ ├── css-backgroundposition-xy.js │ │ │ ├── forms-speechinput.js │ │ │ ├── css-backgroundrepeat.js │ │ │ ├── elem-details.js │ │ │ ├── forms-formattribute.js │ │ │ ├── mathml.js │ │ │ ├── workers-dataworkers.js │ │ │ ├── css-pointerevents.js │ │ │ ├── img-apng.js │ │ │ ├── css-subpixelfont.js │ │ │ ├── canvas-todataurl-type.js │ │ │ ├── network-connection.js │ │ │ ├── css-displaytable.js │ │ │ ├── unicode.js │ │ │ ├── webgl-extensions.js │ │ │ ├── forms-inputnumber-l10n.js │ │ │ ├── workers-blobworkers.js │ │ │ ├── exif-orientation.js │ │ │ ├── elem-ruby.js │ │ │ ├── forms-validation.js │ │ │ └── css-regions.js │ │ ├── .travis.yml │ │ ├── media │ │ │ ├── Modernizr 2 Logo.ai │ │ │ ├── Modernizr 2 Logo.eps │ │ │ ├── Modernizr 2 Logo.pdf │ │ │ └── Modernizr 2 Logo.png │ │ ├── test │ │ │ ├── caniuse_files │ │ │ │ ├── ruby.png │ │ │ │ ├── alpha.png │ │ │ │ ├── table.png │ │ │ │ ├── apng_test.png │ │ │ │ ├── green5x5.png │ │ │ │ ├── red30x30.png │ │ │ │ ├── svg_blur.png │ │ │ │ ├── mathml_ref.png │ │ │ │ ├── before-after.png │ │ │ │ ├── stroked-text.png │ │ │ │ ├── svg-html-blur.png │ │ │ │ ├── text-shadow1.png │ │ │ │ ├── text-shadow2.png │ │ │ │ ├── windsong_font.png │ │ │ │ ├── Windsong-webfont.eot │ │ │ │ ├── Windsong-webfont.otf │ │ │ │ ├── Windsong-webfont.ttf │ │ │ │ ├── png_alpha_result.png │ │ │ │ ├── Windsong-webfont.woff │ │ │ │ ├── svg-img.svg │ │ │ │ ├── svg-img.svg.1 │ │ │ │ ├── hashchange.html │ │ │ │ ├── xhtml.html │ │ │ │ ├── form_validation.html │ │ │ │ └── pushstate.html │ │ │ ├── js │ │ │ │ ├── setup.js │ │ │ │ ├── dumpdata.js │ │ │ │ └── basic.html │ │ │ └── basic.html │ │ ├── .editorconfig │ │ ├── .bower.json │ │ ├── readme.md │ │ └── grunt.js │ └── bootstrap │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ │ ├── less │ │ ├── mixins │ │ │ ├── center-block.less │ │ │ ├── text-emphasis.less │ │ │ ├── size.less │ │ │ ├── opacity.less │ │ │ ├── background-variant.less │ │ │ ├── text-overflow.less │ │ │ ├── tab-focus.less │ │ │ ├── resize.less │ │ │ ├── labels.less │ │ │ ├── progress-bar.less │ │ │ ├── reset-filter.less │ │ │ ├── nav-divider.less │ │ │ ├── alerts.less │ │ │ ├── nav-vertical-align.less │ │ │ ├── responsive-visibility.less │ │ │ ├── pagination.less │ │ │ ├── border-radius.less │ │ │ ├── panels.less │ │ │ ├── list-group.less │ │ │ ├── hide-text.less │ │ │ ├── clearfix.less │ │ │ ├── table-row.less │ │ │ ├── image.less │ │ │ └── buttons.less │ │ ├── wells.less │ │ ├── breadcrumbs.less │ │ ├── responsive-embed.less │ │ ├── component-animations.less │ │ ├── close.less │ │ ├── thumbnails.less │ │ ├── utilities.less │ │ ├── media.less │ │ ├── pager.less │ │ ├── jumbotron.less │ │ ├── mixins.less │ │ ├── badges.less │ │ ├── bootstrap.less │ │ ├── labels.less │ │ ├── code.less │ │ ├── grid.less │ │ ├── alerts.less │ │ ├── print.less │ │ └── pagination.less │ │ ├── dist │ │ └── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ ├── docs │ │ └── dist │ │ │ └── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ ├── bower.json │ │ ├── LICENSE │ │ ├── .bower.json │ │ ├── grunt │ │ ├── bs-glyphicons-data-generator.js │ │ ├── bs-raw-files-generator.js │ │ └── sauce_browsers.yml │ │ ├── js │ │ ├── transition.js │ │ └── alert.js │ │ └── package.json ├── less │ └── all.less ├── images │ └── logo.png └── javascripts │ └── index.js ├── .bowerrc ├── app ├── views │ ├── success.ejs │ └── head.ejs ├── routes │ ├── app.js │ └── auth.js ├── config │ └── auth.js ├── middleware │ └── authentication.js └── models │ └── user-mongo.js ├── bower.json ├── Gruntfile.js ├── package.json ├── app.js └── README.md /Procfile: -------------------------------------------------------------------------------- 1 | web: node app.js -------------------------------------------------------------------------------- /public/bower_components/jquery/src/outro.js: -------------------------------------------------------------------------------- 1 | })); 2 | -------------------------------------------------------------------------------- /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "public/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /public/less/all.less: -------------------------------------------------------------------------------- 1 | @import "utils.less"; 2 | @import "index.less"; -------------------------------------------------------------------------------- /public/bower_components/underscore/.gitignore: -------------------------------------------------------------------------------- 1 | raw 2 | node_modules 3 | -------------------------------------------------------------------------------- /public/bower_components/modernizr/.gitignore: -------------------------------------------------------------------------------- 1 | modernizr.min.js 2 | .DS_Store -------------------------------------------------------------------------------- /public/bower_components/jquery/src/selector.js: -------------------------------------------------------------------------------- 1 | define([ "./selector-sizzle" ]); 2 | -------------------------------------------------------------------------------- /public/bower_components/jquery/src/var/arr.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return []; 3 | }); 4 | -------------------------------------------------------------------------------- /public/bower_components/jquery/src/ajax/var/rquery.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/\?/); 3 | }); 4 | -------------------------------------------------------------------------------- /public/bower_components/jquery/src/var/rnotwhite.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/\S+/g); 3 | }); 4 | -------------------------------------------------------------------------------- /public/bower_components/jquery/src/css/var/rmargin.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/^margin/); 3 | }); 4 | -------------------------------------------------------------------------------- /public/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiobozzo/expressjs-multiauth/HEAD/public/images/logo.png -------------------------------------------------------------------------------- /public/bower_components/jquery/src/var/strundefined.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return typeof undefined; 3 | }); 4 | -------------------------------------------------------------------------------- /app/views/success.ejs: -------------------------------------------------------------------------------- 1 | user ID: <%= user._id %>
2 | local EMAIL: <%= user.email %>
-------------------------------------------------------------------------------- /public/bower_components/jquery/src/var/push.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./arr" 3 | ], function( arr ) { 4 | return arr.push; 5 | }); 6 | -------------------------------------------------------------------------------- /public/bower_components/jquery/src/var/class2type.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | // [[Class]] -> type pairs 3 | return {}; 4 | }); 5 | -------------------------------------------------------------------------------- /public/bower_components/jquery/src/var/concat.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./arr" 3 | ], function( arr ) { 4 | return arr.concat; 5 | }); 6 | -------------------------------------------------------------------------------- /public/bower_components/jquery/src/var/indexOf.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./arr" 3 | ], function( arr ) { 4 | return arr.indexOf; 5 | }); 6 | -------------------------------------------------------------------------------- /public/bower_components/jquery/src/var/slice.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./arr" 3 | ], function( arr ) { 4 | return arr.slice; 5 | }); 6 | -------------------------------------------------------------------------------- /public/bower_components/jquery/src/css/var/cssExpand.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return [ "Top", "Right", "Bottom", "Left" ]; 3 | }); 4 | -------------------------------------------------------------------------------- /public/bower_components/jquery/src/var/pnum.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/).source; 3 | }); 4 | -------------------------------------------------------------------------------- /public/bower_components/jquery/src/data/var/data_priv.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../Data" 3 | ], function( Data ) { 4 | return new Data(); 5 | }); 6 | -------------------------------------------------------------------------------- /public/bower_components/jquery/src/data/var/data_user.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../Data" 3 | ], function( Data ) { 4 | return new Data(); 5 | }); 6 | -------------------------------------------------------------------------------- /public/bower_components/jquery/src/manipulation/var/rcheckableType.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/^(?:checkbox|radio)$/i); 3 | }); 4 | -------------------------------------------------------------------------------- /public/bower_components/modernizr/feature-detects/css-mediaqueries.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | Modernizr.addTest('mediaqueries', Modernizr.mq('only all')); -------------------------------------------------------------------------------- /public/bower_components/jquery/src/ajax/var/nonce.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../../core" 3 | ], function( jQuery ) { 4 | return jQuery.now(); 5 | }); 6 | -------------------------------------------------------------------------------- /public/bower_components/jquery/src/var/toString.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./class2type" 3 | ], function( class2type ) { 4 | return class2type.toString; 5 | }); 6 | -------------------------------------------------------------------------------- /public/bower_components/jquery/src/var/hasOwn.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./class2type" 3 | ], function( class2type ) { 4 | return class2type.hasOwnProperty; 5 | }); 6 | -------------------------------------------------------------------------------- /public/bower_components/jquery/src/core/var/rsingleTag.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | // Match a standalone tag 3 | return (/^<(\w+)\s*\/?>(?:<\/\1>|)$/); 4 | }); 5 | -------------------------------------------------------------------------------- /public/bower_components/jquery/src/var/support.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | // All support tests are defined in their respective modules. 3 | return {}; 4 | }); 5 | -------------------------------------------------------------------------------- /public/bower_components/modernizr/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | before_script: 5 | - npm install grunt 6 | script: grunt travis --verbose -------------------------------------------------------------------------------- /public/bower_components/modernizr/feature-detects/workers-sharedworkers.js: -------------------------------------------------------------------------------- 1 | Modernizr.addTest('sharedworkers', function(){ 2 | return !!window.SharedWorker; 3 | }); -------------------------------------------------------------------------------- /public/bower_components/jquery/src/css/var/rnumnonpx.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../../var/pnum" 3 | ], function( pnum ) { 4 | return new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" ); 5 | }); 6 | -------------------------------------------------------------------------------- /public/bower_components/modernizr/media/Modernizr 2 Logo.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiobozzo/expressjs-multiauth/HEAD/public/bower_components/modernizr/media/Modernizr 2 Logo.ai -------------------------------------------------------------------------------- /public/bower_components/modernizr/media/Modernizr 2 Logo.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiobozzo/expressjs-multiauth/HEAD/public/bower_components/modernizr/media/Modernizr 2 Logo.eps -------------------------------------------------------------------------------- /public/bower_components/modernizr/media/Modernizr 2 Logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiobozzo/expressjs-multiauth/HEAD/public/bower_components/modernizr/media/Modernizr 2 Logo.pdf -------------------------------------------------------------------------------- /public/bower_components/modernizr/media/Modernizr 2 Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiobozzo/expressjs-multiauth/HEAD/public/bower_components/modernizr/media/Modernizr 2 Logo.png -------------------------------------------------------------------------------- /public/bower_components/modernizr/test/caniuse_files/ruby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiobozzo/expressjs-multiauth/HEAD/public/bower_components/modernizr/test/caniuse_files/ruby.png -------------------------------------------------------------------------------- /public/bower_components/modernizr/feature-detects/script-async.js: -------------------------------------------------------------------------------- 1 | // async script 2 | // By Theodoor van Donge 3 | Modernizr.addTest('scriptasync', 'async' in document.createElement('script')); -------------------------------------------------------------------------------- /public/bower_components/modernizr/feature-detects/script-defer.js: -------------------------------------------------------------------------------- 1 | // defer script 2 | // By Theodoor van Donge 3 | Modernizr.addTest('scriptdefer', 'defer' in document.createElement('script')); -------------------------------------------------------------------------------- /public/bower_components/modernizr/test/caniuse_files/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiobozzo/expressjs-multiauth/HEAD/public/bower_components/modernizr/test/caniuse_files/alpha.png -------------------------------------------------------------------------------- /public/bower_components/modernizr/test/caniuse_files/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiobozzo/expressjs-multiauth/HEAD/public/bower_components/modernizr/test/caniuse_files/table.png -------------------------------------------------------------------------------- /public/bower_components/modernizr/feature-detects/cors.js: -------------------------------------------------------------------------------- 1 | // cors 2 | // By Theodoor van Donge 3 | Modernizr.addTest('cors', !!(window.XMLHttpRequest && 'withCredentials' in new XMLHttpRequest())); -------------------------------------------------------------------------------- /public/bower_components/modernizr/test/caniuse_files/apng_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiobozzo/expressjs-multiauth/HEAD/public/bower_components/modernizr/test/caniuse_files/apng_test.png -------------------------------------------------------------------------------- /public/bower_components/modernizr/test/caniuse_files/green5x5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiobozzo/expressjs-multiauth/HEAD/public/bower_components/modernizr/test/caniuse_files/green5x5.png -------------------------------------------------------------------------------- /public/bower_components/modernizr/test/caniuse_files/red30x30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiobozzo/expressjs-multiauth/HEAD/public/bower_components/modernizr/test/caniuse_files/red30x30.png -------------------------------------------------------------------------------- /public/bower_components/modernizr/test/caniuse_files/svg_blur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiobozzo/expressjs-multiauth/HEAD/public/bower_components/modernizr/test/caniuse_files/svg_blur.png -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "express-multiauth", 3 | "version": "0.0.1", 4 | "dependencies": { 5 | "modernizr": "", 6 | "bootstrap": "", 7 | "underscore" : "" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /public/bower_components/jquery/src/css/var/getStyles.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return function( elem ) { 3 | return elem.ownerDocument.defaultView.getComputedStyle( elem, null ); 4 | }; 5 | }); 6 | -------------------------------------------------------------------------------- /public/bower_components/jquery/src/traversing/var/rneedsContext.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../../core", 3 | "../../selector" 4 | ], function( jQuery ) { 5 | return jQuery.expr.match.needsContext; 6 | }); 7 | -------------------------------------------------------------------------------- /public/bower_components/modernizr/test/caniuse_files/mathml_ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiobozzo/expressjs-multiauth/HEAD/public/bower_components/modernizr/test/caniuse_files/mathml_ref.png -------------------------------------------------------------------------------- /public/bower_components/modernizr/test/caniuse_files/before-after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiobozzo/expressjs-multiauth/HEAD/public/bower_components/modernizr/test/caniuse_files/before-after.png -------------------------------------------------------------------------------- /public/bower_components/modernizr/test/caniuse_files/stroked-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiobozzo/expressjs-multiauth/HEAD/public/bower_components/modernizr/test/caniuse_files/stroked-text.png -------------------------------------------------------------------------------- /public/bower_components/modernizr/test/caniuse_files/svg-html-blur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiobozzo/expressjs-multiauth/HEAD/public/bower_components/modernizr/test/caniuse_files/svg-html-blur.png -------------------------------------------------------------------------------- /public/bower_components/modernizr/test/caniuse_files/text-shadow1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiobozzo/expressjs-multiauth/HEAD/public/bower_components/modernizr/test/caniuse_files/text-shadow1.png -------------------------------------------------------------------------------- /public/bower_components/modernizr/test/caniuse_files/text-shadow2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiobozzo/expressjs-multiauth/HEAD/public/bower_components/modernizr/test/caniuse_files/text-shadow2.png -------------------------------------------------------------------------------- /public/bower_components/modernizr/test/caniuse_files/windsong_font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiobozzo/expressjs-multiauth/HEAD/public/bower_components/modernizr/test/caniuse_files/windsong_font.png -------------------------------------------------------------------------------- /public/bower_components/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiobozzo/expressjs-multiauth/HEAD/public/bower_components/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/bower_components/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiobozzo/expressjs-multiauth/HEAD/public/bower_components/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/bower_components/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiobozzo/expressjs-multiauth/HEAD/public/bower_components/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/mixins/center-block.less: -------------------------------------------------------------------------------- 1 | // Center-align a block level element 2 | 3 | .center-block() { 4 | display: block; 5 | margin-left: auto; 6 | margin-right: auto; 7 | } 8 | -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/mixins/text-emphasis.less: -------------------------------------------------------------------------------- 1 | // Typography 2 | 3 | .text-emphasis-variant(@color) { 4 | color: @color; 5 | a&:hover { 6 | color: darken(@color, 10%); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /public/bower_components/modernizr/test/caniuse_files/Windsong-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiobozzo/expressjs-multiauth/HEAD/public/bower_components/modernizr/test/caniuse_files/Windsong-webfont.eot -------------------------------------------------------------------------------- /public/bower_components/modernizr/test/caniuse_files/Windsong-webfont.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiobozzo/expressjs-multiauth/HEAD/public/bower_components/modernizr/test/caniuse_files/Windsong-webfont.otf -------------------------------------------------------------------------------- /public/bower_components/modernizr/test/caniuse_files/Windsong-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiobozzo/expressjs-multiauth/HEAD/public/bower_components/modernizr/test/caniuse_files/Windsong-webfont.ttf -------------------------------------------------------------------------------- /public/bower_components/modernizr/test/caniuse_files/png_alpha_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiobozzo/expressjs-multiauth/HEAD/public/bower_components/modernizr/test/caniuse_files/png_alpha_result.png -------------------------------------------------------------------------------- /public/bower_components/modernizr/test/caniuse_files/Windsong-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiobozzo/expressjs-multiauth/HEAD/public/bower_components/modernizr/test/caniuse_files/Windsong-webfont.woff -------------------------------------------------------------------------------- /public/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiobozzo/expressjs-multiauth/HEAD/public/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiobozzo/expressjs-multiauth/HEAD/public/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiobozzo/expressjs-multiauth/HEAD/public/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /public/bower_components/jquery/src/event/support.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../var/support" 3 | ], function( support ) { 4 | 5 | support.focusinBubbles = "onfocusin" in window; 6 | 7 | return support; 8 | 9 | }); 10 | -------------------------------------------------------------------------------- /public/bower_components/modernizr/feature-detects/css-objectfit.js: -------------------------------------------------------------------------------- 1 | 2 | // dev.opera.com/articles/view/css3-object-fit-object-position/ 3 | 4 | Modernizr.addTest('object-fit', 5 | !!Modernizr.prefixed('objectFit') 6 | ); -------------------------------------------------------------------------------- /public/bower_components/modernizr/feature-detects/css-shapes.js: -------------------------------------------------------------------------------- 1 | 2 | // http://html.adobe.com/webplatform/layout/shapes 3 | 4 | Modernizr.addTest('shapes', Modernizr.testAllProps('shapeOutside', 'content-box', true)); 5 | -------------------------------------------------------------------------------- /public/bower_components/modernizr/feature-detects/dom-microdata.js: -------------------------------------------------------------------------------- 1 | // Microdata support 2 | // http://www.w3.org/TR/html5/microdata.html 3 | // By Addy Osmani 4 | Modernizr.addTest('microdata', !!(document['getItems'])); -------------------------------------------------------------------------------- /public/bower_components/modernizr/feature-detects/network-eventsource.js: -------------------------------------------------------------------------------- 1 | 2 | // server sent events aka eventsource 3 | // dev.w3.org/html5/eventsource/ 4 | 5 | Modernizr.addTest('eventsource', !!window.EventSource); 6 | -------------------------------------------------------------------------------- /public/bower_components/modernizr/feature-detects/audio-audiodata-api.js: -------------------------------------------------------------------------------- 1 | // Mozilla Audio Data API 2 | // https://wiki.mozilla.org/Audio_Data_API 3 | // by Addy Osmani 4 | Modernizr.addTest('audiodata', !!(window.Audio)); 5 | -------------------------------------------------------------------------------- /public/bower_components/bootstrap/docs/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiobozzo/expressjs-multiauth/HEAD/public/bower_components/bootstrap/docs/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/bower_components/bootstrap/docs/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiobozzo/expressjs-multiauth/HEAD/public/bower_components/bootstrap/docs/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/bower_components/bootstrap/docs/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiobozzo/expressjs-multiauth/HEAD/public/bower_components/bootstrap/docs/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/mixins/size.less: -------------------------------------------------------------------------------- 1 | // Sizing shortcuts 2 | 3 | .size(@width; @height) { 4 | width: @width; 5 | height: @height; 6 | } 7 | 8 | .square(@size) { 9 | .size(@size; @size); 10 | } 11 | -------------------------------------------------------------------------------- /public/bower_components/modernizr/feature-detects/es5-strictmode.js: -------------------------------------------------------------------------------- 1 | // strict mode 2 | 3 | // test by @kangax 4 | 5 | Modernizr.addTest('strictmode', function(){ 6 | return (function(){ "use strict"; return !this; })(); 7 | }); -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/mixins/opacity.less: -------------------------------------------------------------------------------- 1 | // Opacity 2 | 3 | .opacity(@opacity) { 4 | opacity: @opacity; 5 | // IE8 filter 6 | @opacity-ie: (@opacity * 100); 7 | filter: ~"alpha(opacity=@{opacity-ie})"; 8 | } 9 | -------------------------------------------------------------------------------- /public/bower_components/modernizr/feature-detects/pointerlock-api.js: -------------------------------------------------------------------------------- 1 | // https://developer.mozilla.org/en-US/docs/API/Pointer_Lock_API 2 | 3 | Modernizr.addTest('pointerlock',!!Modernizr.prefixed('pointerLockElement', document)); 4 | 5 | -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/mixins/background-variant.less: -------------------------------------------------------------------------------- 1 | // Contextual backgrounds 2 | 3 | .bg-variant(@color) { 4 | background-color: @color; 5 | a&:hover { 6 | background-color: darken(@color, 10%); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /public/bower_components/modernizr/feature-detects/dart.js: -------------------------------------------------------------------------------- 1 | // Dart 2 | // By Theodoor van Donge 3 | 4 | // https://chromiumcodereview.appspot.com/9232049/ 5 | 6 | Modernizr.addTest('dart', !!Modernizr.prefixed('startDart', navigator)); 7 | -------------------------------------------------------------------------------- /public/bower_components/modernizr/test/caniuse_files/svg-img.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/bower_components/modernizr/test/caniuse_files/svg-img.svg.1: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/bower_components/modernizr/feature-detects/dom-classlist.js: -------------------------------------------------------------------------------- 1 | // classList 2 | // https://developer.mozilla.org/en/DOM/element.classList 3 | // By Addy Osmani 4 | Modernizr.addTest('classlist', 'classList' in document.documentElement); 5 | -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/mixins/text-overflow.less: -------------------------------------------------------------------------------- 1 | // Text overflow 2 | // Requires inline-block or block for proper styling 3 | 4 | .text-overflow() { 5 | overflow: hidden; 6 | text-overflow: ellipsis; 7 | white-space: nowrap; 8 | } 9 | -------------------------------------------------------------------------------- /public/bower_components/modernizr/feature-detects/window-framed.js: -------------------------------------------------------------------------------- 1 | 2 | // tests if page is iframed 3 | 4 | // github.com/Modernizr/Modernizr/issues/242 5 | 6 | Modernizr.addTest('framed', function(){ 7 | return window.location != top.location; 8 | }); 9 | -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/mixins/tab-focus.less: -------------------------------------------------------------------------------- 1 | // WebKit-style focus 2 | 3 | .tab-focus() { 4 | // Default 5 | outline: thin dotted; 6 | // WebKit 7 | outline: 5px auto -webkit-focus-ring-color; 8 | outline-offset: -2px; 9 | } 10 | -------------------------------------------------------------------------------- /public/bower_components/modernizr/.editorconfig: -------------------------------------------------------------------------------- 1 | # editorconfig.org 2 | root = true 3 | 4 | [*] 5 | indent_style = space 6 | indent_size = 2 7 | end_of_line = lf 8 | charset = utf-8 9 | trim_trailing_whitespace = true 10 | insert_final_newline = true 11 | -------------------------------------------------------------------------------- /public/bower_components/modernizr/feature-detects/vibration.js: -------------------------------------------------------------------------------- 1 | // Vibration API 2 | // http://www.w3.org/TR/vibration/ 3 | // https://developer.mozilla.org/en/DOM/window.navigator.mozVibrate 4 | Modernizr.addTest('vibrate', !!Modernizr.prefixed('vibrate', navigator)); -------------------------------------------------------------------------------- /public/bower_components/modernizr/feature-detects/battery-api.js: -------------------------------------------------------------------------------- 1 | 2 | // Battery API 3 | // https://developer.mozilla.org/en/DOM/window.navigator.mozBattery 4 | // By: Paul Sayre 5 | 6 | Modernizr.addTest('battery', 7 | !!Modernizr.prefixed('battery', navigator) 8 | ); -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/mixins/resize.less: -------------------------------------------------------------------------------- 1 | // Resize anything 2 | 3 | .resizable(@direction) { 4 | resize: @direction; // Options: horizontal, vertical, both 5 | overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible` 6 | } 7 | -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/mixins/labels.less: -------------------------------------------------------------------------------- 1 | // Labels 2 | 3 | .label-variant(@color) { 4 | background-color: @color; 5 | 6 | &[href] { 7 | &:hover, 8 | &:focus { 9 | background-color: darken(@color, 10%); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /public/bower_components/modernizr/feature-detects/audio-webaudio-api.js: -------------------------------------------------------------------------------- 1 | // Web Audio API 2 | // https://dvcs.w3.org/hg/audio/raw-file/tip/webaudio/specification.html 3 | // By Addy Osmani 4 | Modernizr.addTest('webaudio', !!(window.webkitAudioContext || window.AudioContext)); 5 | -------------------------------------------------------------------------------- /public/bower_components/modernizr/feature-detects/dataview-api.js: -------------------------------------------------------------------------------- 1 | // DataView 2 | // https://developer.mozilla.org/en/JavaScript_typed_arrays/DataView 3 | // By Addy Osmani 4 | Modernizr.addTest('dataview', (typeof DataView !== 'undefined' && 'getFloat64' in DataView.prototype)); -------------------------------------------------------------------------------- /public/bower_components/modernizr/feature-detects/elem-time.js: -------------------------------------------------------------------------------- 1 | //