├── .gitattributes ├── .gitignore ├── README.md ├── TFAWebApiAngularJS.sln ├── TwoFactorAuthentication.API ├── App_Start │ └── WebApiConfig.cs ├── AuthContext.cs ├── AuthRepository.cs ├── Controllers │ ├── AccountController.cs │ └── TransactionsController.cs ├── Filters │ └── TwoFactorAuthorizeAttribute.cs ├── Helpers │ └── OtpHelper.cs ├── Models │ └── UserModel.cs ├── Properties │ └── AssemblyInfo.cs ├── Providers │ └── SimpleAuthorizationServerProvider.cs ├── Services │ └── TimeSensitivePassCode.cs ├── Startup.cs ├── TwoFactorAuthentication.API.csproj ├── Web.Debug.config ├── Web.Release.config ├── Web.config └── packages.config ├── TwoFactorAuthentication.Web ├── Properties │ └── AssemblyInfo.cs ├── TwoFactorAuthentication.Web.csproj ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── app │ ├── app.js │ ├── controllers │ │ ├── homeController.js │ │ ├── indexController.js │ │ ├── loginController.js │ │ ├── moneyTransController.js │ │ ├── signupController.js │ │ └── transferMoneyController.js │ ├── services │ │ ├── authInterceptorService.js │ │ ├── authService.js │ │ └── moneyTransService.js │ └── views │ │ ├── home.html │ │ ├── login.html │ │ ├── signup.html │ │ ├── transferMoney.html │ │ └── transhistory.html ├── content │ ├── css │ │ ├── darkly.bootstrap.min.css │ │ ├── font-awesome.min.css │ │ ├── loading-bar.css │ │ ├── loading-bar.min.css │ │ └── site.css │ └── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff ├── index.html └── scripts │ ├── angular-local-storage.min.js │ └── loading-bar.min.js └── packages ├── EntityFramework.6.1.0 ├── EntityFramework.6.1.0.nupkg ├── content │ ├── App.config.transform │ └── Web.config.transform ├── lib │ ├── net40 │ │ ├── EntityFramework.SqlServer.dll │ │ ├── EntityFramework.SqlServer.xml │ │ ├── EntityFramework.dll │ │ └── EntityFramework.xml │ └── net45 │ │ ├── EntityFramework.SqlServer.dll │ │ ├── EntityFramework.SqlServer.xml │ │ ├── EntityFramework.dll │ │ └── EntityFramework.xml └── tools │ ├── EntityFramework.PowerShell.Utility.dll │ ├── EntityFramework.PowerShell.dll │ ├── EntityFramework.psd1 │ ├── EntityFramework.psm1 │ ├── about_EntityFramework.help.txt │ ├── init.ps1 │ ├── install.ps1 │ └── migrate.exe ├── Microsoft.AspNet.Cors.5.0.0 ├── Microsoft.AspNet.Cors.5.0.0.nupkg └── lib │ └── net45 │ └── System.Web.Cors.dll ├── Microsoft.AspNet.Identity.Core.2.1.0 ├── Microsoft.AspNet.Identity.Core.2.1.0.nupkg └── lib │ └── net45 │ ├── Microsoft.AspNet.Identity.Core.dll │ └── Microsoft.AspNet.Identity.Core.xml ├── Microsoft.AspNet.Identity.EntityFramework.2.1.0 ├── Microsoft.AspNet.Identity.EntityFramework.2.1.0.nupkg └── lib │ └── net45 │ ├── Microsoft.AspNet.Identity.EntityFramework.dll │ └── Microsoft.AspNet.Identity.EntityFramework.xml ├── Microsoft.AspNet.Identity.Owin.2.1.0 ├── Microsoft.AspNet.Identity.Owin.2.1.0.nupkg └── lib │ └── net45 │ ├── Microsoft.AspNet.Identity.Owin.dll │ └── Microsoft.AspNet.Identity.Owin.xml ├── Microsoft.AspNet.WebApi.5.2.2 └── Microsoft.AspNet.WebApi.5.2.2.nupkg ├── Microsoft.AspNet.WebApi.Client.5.2.2 ├── Microsoft.AspNet.WebApi.Client.5.2.2.nupkg └── lib │ ├── net45 │ ├── System.Net.Http.Formatting.dll │ └── System.Net.Http.Formatting.xml │ └── portable-wp8+netcore45+net45+wp81+wpa81 │ ├── System.Net.Http.Formatting.dll │ └── System.Net.Http.Formatting.xml ├── Microsoft.AspNet.WebApi.Core.5.2.2 ├── Content │ └── web.config.transform ├── Microsoft.AspNet.WebApi.Core.5.2.2.nupkg └── lib │ └── net45 │ ├── System.Web.Http.dll │ └── System.Web.Http.xml ├── Microsoft.AspNet.WebApi.Owin.5.2.2 ├── Microsoft.AspNet.WebApi.Owin.5.2.2.nupkg └── lib │ └── net45 │ ├── System.Web.Http.Owin.dll │ └── System.Web.Http.Owin.xml ├── Microsoft.AspNet.WebApi.WebHost.5.2.2 ├── Microsoft.AspNet.WebApi.WebHost.5.2.2.nupkg └── lib │ └── net45 │ ├── System.Web.Http.WebHost.dll │ └── System.Web.Http.WebHost.xml ├── Microsoft.Owin.3.0.0 ├── Microsoft.Owin.3.0.0.nupkg └── lib │ └── net45 │ ├── Microsoft.Owin.XML │ └── Microsoft.Owin.dll ├── Microsoft.Owin.Cors.3.0.0 ├── Microsoft.Owin.Cors.3.0.0.nupkg └── lib │ └── net45 │ ├── Microsoft.Owin.Cors.XML │ └── Microsoft.Owin.Cors.dll ├── Microsoft.Owin.Host.SystemWeb.3.0.0 ├── Microsoft.Owin.Host.SystemWeb.3.0.0.nupkg └── lib │ └── net45 │ ├── Microsoft.Owin.Host.SystemWeb.dll │ └── Microsoft.Owin.Host.SystemWeb.xml ├── Microsoft.Owin.Security.3.0.0 ├── Microsoft.Owin.Security.3.0.0.nupkg └── lib │ └── net45 │ ├── Microsoft.Owin.Security.XML │ └── Microsoft.Owin.Security.dll ├── Microsoft.Owin.Security.Cookies.2.1.0 ├── Microsoft.Owin.Security.Cookies.2.1.0.nupkg └── lib │ └── net45 │ ├── Microsoft.Owin.Security.Cookies.dll │ └── Microsoft.Owin.Security.Cookies.xml ├── Microsoft.Owin.Security.OAuth.3.0.0 ├── Microsoft.Owin.Security.OAuth.3.0.0.nupkg └── lib │ └── net45 │ ├── Microsoft.Owin.Security.OAuth.XML │ └── Microsoft.Owin.Security.OAuth.dll ├── Newtonsoft.Json.6.0.4 ├── Newtonsoft.Json.6.0.4.nupkg ├── lib │ ├── net20 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── net35 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── net40 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── net45 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── netcore45 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── portable-net40+sl5+wp80+win8+wpa81 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ └── portable-net45+wp80+win8+wpa81 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml └── tools │ └── install.ps1 ├── Owin.1.0 ├── Owin.1.0.nupkg └── lib │ └── net40 │ └── Owin.dll └── repositories.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/README.md -------------------------------------------------------------------------------- /TFAWebApiAngularJS.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/TFAWebApiAngularJS.sln -------------------------------------------------------------------------------- /TwoFactorAuthentication.API/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/TwoFactorAuthentication.API/App_Start/WebApiConfig.cs -------------------------------------------------------------------------------- /TwoFactorAuthentication.API/AuthContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/TwoFactorAuthentication.API/AuthContext.cs -------------------------------------------------------------------------------- /TwoFactorAuthentication.API/AuthRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/TwoFactorAuthentication.API/AuthRepository.cs -------------------------------------------------------------------------------- /TwoFactorAuthentication.API/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/TwoFactorAuthentication.API/Controllers/AccountController.cs -------------------------------------------------------------------------------- /TwoFactorAuthentication.API/Controllers/TransactionsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/TwoFactorAuthentication.API/Controllers/TransactionsController.cs -------------------------------------------------------------------------------- /TwoFactorAuthentication.API/Filters/TwoFactorAuthorizeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/TwoFactorAuthentication.API/Filters/TwoFactorAuthorizeAttribute.cs -------------------------------------------------------------------------------- /TwoFactorAuthentication.API/Helpers/OtpHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/TwoFactorAuthentication.API/Helpers/OtpHelper.cs -------------------------------------------------------------------------------- /TwoFactorAuthentication.API/Models/UserModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/TwoFactorAuthentication.API/Models/UserModel.cs -------------------------------------------------------------------------------- /TwoFactorAuthentication.API/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/TwoFactorAuthentication.API/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TwoFactorAuthentication.API/Providers/SimpleAuthorizationServerProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/TwoFactorAuthentication.API/Providers/SimpleAuthorizationServerProvider.cs -------------------------------------------------------------------------------- /TwoFactorAuthentication.API/Services/TimeSensitivePassCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/TwoFactorAuthentication.API/Services/TimeSensitivePassCode.cs -------------------------------------------------------------------------------- /TwoFactorAuthentication.API/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/TwoFactorAuthentication.API/Startup.cs -------------------------------------------------------------------------------- /TwoFactorAuthentication.API/TwoFactorAuthentication.API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/TwoFactorAuthentication.API/TwoFactorAuthentication.API.csproj -------------------------------------------------------------------------------- /TwoFactorAuthentication.API/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/TwoFactorAuthentication.API/Web.Debug.config -------------------------------------------------------------------------------- /TwoFactorAuthentication.API/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/TwoFactorAuthentication.API/Web.Release.config -------------------------------------------------------------------------------- /TwoFactorAuthentication.API/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/TwoFactorAuthentication.API/Web.config -------------------------------------------------------------------------------- /TwoFactorAuthentication.API/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/TwoFactorAuthentication.API/packages.config -------------------------------------------------------------------------------- /TwoFactorAuthentication.Web/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/TwoFactorAuthentication.Web/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TwoFactorAuthentication.Web/TwoFactorAuthentication.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/TwoFactorAuthentication.Web/TwoFactorAuthentication.Web.csproj -------------------------------------------------------------------------------- /TwoFactorAuthentication.Web/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/TwoFactorAuthentication.Web/Web.Debug.config -------------------------------------------------------------------------------- /TwoFactorAuthentication.Web/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/TwoFactorAuthentication.Web/Web.Release.config -------------------------------------------------------------------------------- /TwoFactorAuthentication.Web/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/TwoFactorAuthentication.Web/Web.config -------------------------------------------------------------------------------- /TwoFactorAuthentication.Web/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/TwoFactorAuthentication.Web/app/app.js -------------------------------------------------------------------------------- /TwoFactorAuthentication.Web/app/controllers/homeController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/TwoFactorAuthentication.Web/app/controllers/homeController.js -------------------------------------------------------------------------------- /TwoFactorAuthentication.Web/app/controllers/indexController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/TwoFactorAuthentication.Web/app/controllers/indexController.js -------------------------------------------------------------------------------- /TwoFactorAuthentication.Web/app/controllers/loginController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/TwoFactorAuthentication.Web/app/controllers/loginController.js -------------------------------------------------------------------------------- /TwoFactorAuthentication.Web/app/controllers/moneyTransController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/TwoFactorAuthentication.Web/app/controllers/moneyTransController.js -------------------------------------------------------------------------------- /TwoFactorAuthentication.Web/app/controllers/signupController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/TwoFactorAuthentication.Web/app/controllers/signupController.js -------------------------------------------------------------------------------- /TwoFactorAuthentication.Web/app/controllers/transferMoneyController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/TwoFactorAuthentication.Web/app/controllers/transferMoneyController.js -------------------------------------------------------------------------------- /TwoFactorAuthentication.Web/app/services/authInterceptorService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/TwoFactorAuthentication.Web/app/services/authInterceptorService.js -------------------------------------------------------------------------------- /TwoFactorAuthentication.Web/app/services/authService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/TwoFactorAuthentication.Web/app/services/authService.js -------------------------------------------------------------------------------- /TwoFactorAuthentication.Web/app/services/moneyTransService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/TwoFactorAuthentication.Web/app/services/moneyTransService.js -------------------------------------------------------------------------------- /TwoFactorAuthentication.Web/app/views/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/TwoFactorAuthentication.Web/app/views/home.html -------------------------------------------------------------------------------- /TwoFactorAuthentication.Web/app/views/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/TwoFactorAuthentication.Web/app/views/login.html -------------------------------------------------------------------------------- /TwoFactorAuthentication.Web/app/views/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/TwoFactorAuthentication.Web/app/views/signup.html -------------------------------------------------------------------------------- /TwoFactorAuthentication.Web/app/views/transferMoney.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/TwoFactorAuthentication.Web/app/views/transferMoney.html -------------------------------------------------------------------------------- /TwoFactorAuthentication.Web/app/views/transhistory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/TwoFactorAuthentication.Web/app/views/transhistory.html -------------------------------------------------------------------------------- /TwoFactorAuthentication.Web/content/css/darkly.bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/TwoFactorAuthentication.Web/content/css/darkly.bootstrap.min.css -------------------------------------------------------------------------------- /TwoFactorAuthentication.Web/content/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/TwoFactorAuthentication.Web/content/css/font-awesome.min.css -------------------------------------------------------------------------------- /TwoFactorAuthentication.Web/content/css/loading-bar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/TwoFactorAuthentication.Web/content/css/loading-bar.css -------------------------------------------------------------------------------- /TwoFactorAuthentication.Web/content/css/loading-bar.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/TwoFactorAuthentication.Web/content/css/loading-bar.min.css -------------------------------------------------------------------------------- /TwoFactorAuthentication.Web/content/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/TwoFactorAuthentication.Web/content/css/site.css -------------------------------------------------------------------------------- /TwoFactorAuthentication.Web/content/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/TwoFactorAuthentication.Web/content/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /TwoFactorAuthentication.Web/content/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/TwoFactorAuthentication.Web/content/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /TwoFactorAuthentication.Web/content/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/TwoFactorAuthentication.Web/content/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /TwoFactorAuthentication.Web/content/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/TwoFactorAuthentication.Web/content/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /TwoFactorAuthentication.Web/content/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/TwoFactorAuthentication.Web/content/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /TwoFactorAuthentication.Web/content/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/TwoFactorAuthentication.Web/content/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /TwoFactorAuthentication.Web/content/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/TwoFactorAuthentication.Web/content/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /TwoFactorAuthentication.Web/content/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/TwoFactorAuthentication.Web/content/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /TwoFactorAuthentication.Web/content/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/TwoFactorAuthentication.Web/content/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /TwoFactorAuthentication.Web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/TwoFactorAuthentication.Web/index.html -------------------------------------------------------------------------------- /TwoFactorAuthentication.Web/scripts/angular-local-storage.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/TwoFactorAuthentication.Web/scripts/angular-local-storage.min.js -------------------------------------------------------------------------------- /TwoFactorAuthentication.Web/scripts/loading-bar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/TwoFactorAuthentication.Web/scripts/loading-bar.min.js -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.0/EntityFramework.6.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/EntityFramework.6.1.0/EntityFramework.6.1.0.nupkg -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.0/content/App.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/EntityFramework.6.1.0/content/App.config.transform -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.0/content/Web.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/EntityFramework.6.1.0/content/Web.config.transform -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.0/lib/net40/EntityFramework.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/EntityFramework.6.1.0/lib/net40/EntityFramework.SqlServer.dll -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.0/lib/net40/EntityFramework.SqlServer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/EntityFramework.6.1.0/lib/net40/EntityFramework.SqlServer.xml -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.0/lib/net40/EntityFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/EntityFramework.6.1.0/lib/net40/EntityFramework.dll -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.0/lib/net40/EntityFramework.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/EntityFramework.6.1.0/lib/net40/EntityFramework.xml -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.0/lib/net45/EntityFramework.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/EntityFramework.6.1.0/lib/net45/EntityFramework.SqlServer.dll -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.0/lib/net45/EntityFramework.SqlServer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/EntityFramework.6.1.0/lib/net45/EntityFramework.SqlServer.xml -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.0/lib/net45/EntityFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/EntityFramework.6.1.0/lib/net45/EntityFramework.dll -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.0/lib/net45/EntityFramework.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/EntityFramework.6.1.0/lib/net45/EntityFramework.xml -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.0/tools/EntityFramework.PowerShell.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/EntityFramework.6.1.0/tools/EntityFramework.PowerShell.Utility.dll -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.0/tools/EntityFramework.PowerShell.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/EntityFramework.6.1.0/tools/EntityFramework.PowerShell.dll -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.0/tools/EntityFramework.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/EntityFramework.6.1.0/tools/EntityFramework.psd1 -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.0/tools/EntityFramework.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/EntityFramework.6.1.0/tools/EntityFramework.psm1 -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.0/tools/about_EntityFramework.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/EntityFramework.6.1.0/tools/about_EntityFramework.help.txt -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.0/tools/init.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/EntityFramework.6.1.0/tools/init.ps1 -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.0/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/EntityFramework.6.1.0/tools/install.ps1 -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.0/tools/migrate.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/EntityFramework.6.1.0/tools/migrate.exe -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Cors.5.0.0/Microsoft.AspNet.Cors.5.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Microsoft.AspNet.Cors.5.0.0/Microsoft.AspNet.Cors.5.0.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Cors.5.0.0/lib/net45/System.Web.Cors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Microsoft.AspNet.Cors.5.0.0/lib/net45/System.Web.Cors.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Core.2.1.0/Microsoft.AspNet.Identity.Core.2.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Microsoft.AspNet.Identity.Core.2.1.0/Microsoft.AspNet.Identity.Core.2.1.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Core.2.1.0/lib/net45/Microsoft.AspNet.Identity.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Microsoft.AspNet.Identity.Core.2.1.0/lib/net45/Microsoft.AspNet.Identity.Core.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Core.2.1.0/lib/net45/Microsoft.AspNet.Identity.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Microsoft.AspNet.Identity.Core.2.1.0/lib/net45/Microsoft.AspNet.Identity.Core.xml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.EntityFramework.2.1.0/Microsoft.AspNet.Identity.EntityFramework.2.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Microsoft.AspNet.Identity.EntityFramework.2.1.0/Microsoft.AspNet.Identity.EntityFramework.2.1.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.EntityFramework.2.1.0/lib/net45/Microsoft.AspNet.Identity.EntityFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Microsoft.AspNet.Identity.EntityFramework.2.1.0/lib/net45/Microsoft.AspNet.Identity.EntityFramework.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.EntityFramework.2.1.0/lib/net45/Microsoft.AspNet.Identity.EntityFramework.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Microsoft.AspNet.Identity.EntityFramework.2.1.0/lib/net45/Microsoft.AspNet.Identity.EntityFramework.xml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Owin.2.1.0/Microsoft.AspNet.Identity.Owin.2.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Microsoft.AspNet.Identity.Owin.2.1.0/Microsoft.AspNet.Identity.Owin.2.1.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Owin.2.1.0/lib/net45/Microsoft.AspNet.Identity.Owin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Microsoft.AspNet.Identity.Owin.2.1.0/lib/net45/Microsoft.AspNet.Identity.Owin.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Identity.Owin.2.1.0/lib/net45/Microsoft.AspNet.Identity.Owin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Microsoft.AspNet.Identity.Owin.2.1.0/lib/net45/Microsoft.AspNet.Identity.Owin.xml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.5.2.2/Microsoft.AspNet.WebApi.5.2.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Microsoft.AspNet.WebApi.5.2.2/Microsoft.AspNet.WebApi.5.2.2.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Client.5.2.2/Microsoft.AspNet.WebApi.Client.5.2.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Microsoft.AspNet.WebApi.Client.5.2.2/Microsoft.AspNet.WebApi.Client.5.2.2.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Client.5.2.2/lib/net45/System.Net.Http.Formatting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Microsoft.AspNet.WebApi.Client.5.2.2/lib/net45/System.Net.Http.Formatting.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Client.5.2.2/lib/net45/System.Net.Http.Formatting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Microsoft.AspNet.WebApi.Client.5.2.2/lib/net45/System.Net.Http.Formatting.xml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Client.5.2.2/lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Microsoft.AspNet.WebApi.Client.5.2.2/lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Client.5.2.2/lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Microsoft.AspNet.WebApi.Client.5.2.2/lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.xml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Core.5.2.2/Content/web.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Microsoft.AspNet.WebApi.Core.5.2.2/Content/web.config.transform -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Core.5.2.2/Microsoft.AspNet.WebApi.Core.5.2.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Microsoft.AspNet.WebApi.Core.5.2.2/Microsoft.AspNet.WebApi.Core.5.2.2.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Core.5.2.2/lib/net45/System.Web.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Microsoft.AspNet.WebApi.Core.5.2.2/lib/net45/System.Web.Http.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Core.5.2.2/lib/net45/System.Web.Http.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Microsoft.AspNet.WebApi.Core.5.2.2/lib/net45/System.Web.Http.xml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Owin.5.2.2/Microsoft.AspNet.WebApi.Owin.5.2.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Microsoft.AspNet.WebApi.Owin.5.2.2/Microsoft.AspNet.WebApi.Owin.5.2.2.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Owin.5.2.2/lib/net45/System.Web.Http.Owin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Microsoft.AspNet.WebApi.Owin.5.2.2/lib/net45/System.Web.Http.Owin.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Owin.5.2.2/lib/net45/System.Web.Http.Owin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Microsoft.AspNet.WebApi.Owin.5.2.2/lib/net45/System.Web.Http.Owin.xml -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.WebHost.5.2.2/Microsoft.AspNet.WebApi.WebHost.5.2.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Microsoft.AspNet.WebApi.WebHost.5.2.2/Microsoft.AspNet.WebApi.WebHost.5.2.2.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.WebHost.5.2.2/lib/net45/System.Web.Http.WebHost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Microsoft.AspNet.WebApi.WebHost.5.2.2/lib/net45/System.Web.Http.WebHost.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.WebHost.5.2.2/lib/net45/System.Web.Http.WebHost.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Microsoft.AspNet.WebApi.WebHost.5.2.2/lib/net45/System.Web.Http.WebHost.xml -------------------------------------------------------------------------------- /packages/Microsoft.Owin.3.0.0/Microsoft.Owin.3.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Microsoft.Owin.3.0.0/Microsoft.Owin.3.0.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Owin.3.0.0/lib/net45/Microsoft.Owin.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Microsoft.Owin.3.0.0/lib/net45/Microsoft.Owin.XML -------------------------------------------------------------------------------- /packages/Microsoft.Owin.3.0.0/lib/net45/Microsoft.Owin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Microsoft.Owin.3.0.0/lib/net45/Microsoft.Owin.dll -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Cors.3.0.0/Microsoft.Owin.Cors.3.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Microsoft.Owin.Cors.3.0.0/Microsoft.Owin.Cors.3.0.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Cors.3.0.0/lib/net45/Microsoft.Owin.Cors.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Microsoft.Owin.Cors.3.0.0/lib/net45/Microsoft.Owin.Cors.XML -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Cors.3.0.0/lib/net45/Microsoft.Owin.Cors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Microsoft.Owin.Cors.3.0.0/lib/net45/Microsoft.Owin.Cors.dll -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Host.SystemWeb.3.0.0/Microsoft.Owin.Host.SystemWeb.3.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Microsoft.Owin.Host.SystemWeb.3.0.0/Microsoft.Owin.Host.SystemWeb.3.0.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Host.SystemWeb.3.0.0/lib/net45/Microsoft.Owin.Host.SystemWeb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Microsoft.Owin.Host.SystemWeb.3.0.0/lib/net45/Microsoft.Owin.Host.SystemWeb.dll -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Host.SystemWeb.3.0.0/lib/net45/Microsoft.Owin.Host.SystemWeb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Microsoft.Owin.Host.SystemWeb.3.0.0/lib/net45/Microsoft.Owin.Host.SystemWeb.xml -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Security.3.0.0/Microsoft.Owin.Security.3.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Microsoft.Owin.Security.3.0.0/Microsoft.Owin.Security.3.0.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Security.3.0.0/lib/net45/Microsoft.Owin.Security.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Microsoft.Owin.Security.3.0.0/lib/net45/Microsoft.Owin.Security.XML -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Security.3.0.0/lib/net45/Microsoft.Owin.Security.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Microsoft.Owin.Security.3.0.0/lib/net45/Microsoft.Owin.Security.dll -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Security.Cookies.2.1.0/Microsoft.Owin.Security.Cookies.2.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Microsoft.Owin.Security.Cookies.2.1.0/Microsoft.Owin.Security.Cookies.2.1.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Security.Cookies.2.1.0/lib/net45/Microsoft.Owin.Security.Cookies.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Microsoft.Owin.Security.Cookies.2.1.0/lib/net45/Microsoft.Owin.Security.Cookies.dll -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Security.Cookies.2.1.0/lib/net45/Microsoft.Owin.Security.Cookies.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Microsoft.Owin.Security.Cookies.2.1.0/lib/net45/Microsoft.Owin.Security.Cookies.xml -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Security.OAuth.3.0.0/Microsoft.Owin.Security.OAuth.3.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Microsoft.Owin.Security.OAuth.3.0.0/Microsoft.Owin.Security.OAuth.3.0.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Security.OAuth.3.0.0/lib/net45/Microsoft.Owin.Security.OAuth.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Microsoft.Owin.Security.OAuth.3.0.0/lib/net45/Microsoft.Owin.Security.OAuth.XML -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Security.OAuth.3.0.0/lib/net45/Microsoft.Owin.Security.OAuth.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Microsoft.Owin.Security.OAuth.3.0.0/lib/net45/Microsoft.Owin.Security.OAuth.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.4/Newtonsoft.Json.6.0.4.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Newtonsoft.Json.6.0.4/Newtonsoft.Json.6.0.4.nupkg -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.4/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Newtonsoft.Json.6.0.4/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.4/lib/net20/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Newtonsoft.Json.6.0.4/lib/net20/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.4/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Newtonsoft.Json.6.0.4/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.4/lib/net35/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Newtonsoft.Json.6.0.4/lib/net35/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.4/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Newtonsoft.Json.6.0.4/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.4/lib/net40/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Newtonsoft.Json.6.0.4/lib/net40/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.4/lib/net45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Newtonsoft.Json.6.0.4/lib/net45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.4/lib/net45/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Newtonsoft.Json.6.0.4/lib/net45/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.4/lib/netcore45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Newtonsoft.Json.6.0.4/lib/netcore45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.4/lib/netcore45/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Newtonsoft.Json.6.0.4/lib/netcore45/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.4/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Newtonsoft.Json.6.0.4/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.4/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Newtonsoft.Json.6.0.4/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.4/lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Newtonsoft.Json.6.0.4/lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.4/lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Newtonsoft.Json.6.0.4/lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.4/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Newtonsoft.Json.6.0.4/tools/install.ps1 -------------------------------------------------------------------------------- /packages/Owin.1.0/Owin.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Owin.1.0/Owin.1.0.nupkg -------------------------------------------------------------------------------- /packages/Owin.1.0/lib/net40/Owin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/Owin.1.0/lib/net40/Owin.dll -------------------------------------------------------------------------------- /packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjoudeh/AngularJSTwoFactorAuthentication/HEAD/packages/repositories.config --------------------------------------------------------------------------------