├── .gitattributes ├── .gitignore ├── .vs ├── NetCoreVerificationCode │ └── v16 │ │ └── .suo ├── ProjectSettings.json └── slnx.sqlite ├── Image ├── 1.jpg ├── 2.jpg ├── 3.jpg └── 4.jpg ├── README.md ├── VerificationCode.sln └── VerificationCode ├── Code ├── VerificationCodeAESHelp.cs └── VerificationCodeImage.cs ├── Controllers └── HomeController.cs ├── Program.cs ├── Properties └── launchSettings.json ├── Startup.cs ├── VerificationCode.csproj ├── VerificationCode.csproj.user ├── Views ├── Home │ └── Index.cshtml └── Shared │ └── _Layout.cshtml ├── appsettings.Development.json ├── appsettings.json ├── bin └── Debug │ └── netcoreapp2.1 │ ├── VerificationCode.Views.dll │ ├── VerificationCode.Views.pdb │ ├── VerificationCode.deps.json │ ├── VerificationCode.dll │ ├── VerificationCode.pdb │ ├── VerificationCode.runtimeconfig.dev.json │ └── VerificationCode.runtimeconfig.json ├── obj ├── Debug │ └── netcoreapp3.1 │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ ├── Razor │ │ └── Views │ │ │ ├── Home │ │ │ └── Index.cshtml.g.cs │ │ │ └── Shared │ │ │ └── _Layout.cshtml.g.cs │ │ ├── VerificationCode.AssemblyInfo.cs │ │ ├── VerificationCode.AssemblyInfoInputs.cache │ │ ├── VerificationCode.MvcApplicationPartsAssemblyInfo.cache │ │ ├── VerificationCode.RazorAssemblyInfo.cache │ │ ├── VerificationCode.RazorAssemblyInfo.cs │ │ ├── VerificationCode.RazorCoreGenerate.cache │ │ ├── VerificationCode.RazorTargetAssemblyInfo.cache │ │ ├── VerificationCode.RazorTargetAssemblyInfo.cs │ │ ├── VerificationCode.TagHelpers.input.cache │ │ ├── VerificationCode.TagHelpers.output.cache │ │ ├── VerificationCode.Views.dll │ │ ├── VerificationCode.Views.pdb │ │ ├── VerificationCode.assets.cache │ │ ├── VerificationCode.csproj.CopyComplete │ │ ├── VerificationCode.csproj.FileListAbsolute.txt │ │ ├── VerificationCode.csprojAssemblyReference.cache │ │ ├── VerificationCode.dll │ │ ├── VerificationCode.exe │ │ ├── VerificationCode.pdb │ │ ├── apphost.exe │ │ └── staticwebassets │ │ ├── VerificationCode.StaticWebAssets.Manifest.cache │ │ └── VerificationCode.StaticWebAssets.xml ├── Release │ └── netcoreapp3.1 │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ ├── VerificationCode.AssemblyInfo.cs │ │ ├── VerificationCode.AssemblyInfoInputs.cache │ │ ├── VerificationCode.RazorAssemblyInfo.cache │ │ ├── VerificationCode.RazorAssemblyInfo.cs │ │ └── VerificationCode.assets.cache ├── VerificationCode.csproj.nuget.cache ├── VerificationCode.csproj.nuget.dgspec.json ├── VerificationCode.csproj.nuget.g.props ├── VerificationCode.csproj.nuget.g.targets ├── project.assets.json └── project.nuget.cache └── wwwroot ├── css ├── site.css ├── site.min.css ├── slide-unlock.css └── style.css ├── favicon.ico ├── images ├── banner1.svg ├── banner2.svg ├── banner3.svg └── shaxin.jpg ├── js ├── Particleground.js ├── jquery1.11.1.js ├── site.js ├── site.min.js └── slide.js ├── lib ├── bootstrap │ ├── .bower.json │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-theme.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── npm.js ├── jquery-validation-unobtrusive │ ├── .bower.json │ ├── LICENSE.txt │ ├── jquery.validate.unobtrusive.js │ └── jquery.validate.unobtrusive.min.js ├── jquery-validation │ ├── .bower.json │ ├── LICENSE.md │ └── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js └── jquery │ ├── .bower.json │ ├── LICENSE.txt │ └── dist │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map └── verificationcodeImage ├── 10.jpg ├── 2.jpg ├── 5.jpg └── 8.jpg /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/.gitignore -------------------------------------------------------------------------------- /.vs/NetCoreVerificationCode/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/.vs/NetCoreVerificationCode/v16/.suo -------------------------------------------------------------------------------- /.vs/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CurrentProjectSetting": null 3 | } -------------------------------------------------------------------------------- /.vs/slnx.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/.vs/slnx.sqlite -------------------------------------------------------------------------------- /Image/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/Image/1.jpg -------------------------------------------------------------------------------- /Image/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/Image/2.jpg -------------------------------------------------------------------------------- /Image/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/Image/3.jpg -------------------------------------------------------------------------------- /Image/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/Image/4.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/README.md -------------------------------------------------------------------------------- /VerificationCode.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode.sln -------------------------------------------------------------------------------- /VerificationCode/Code/VerificationCodeAESHelp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/Code/VerificationCodeAESHelp.cs -------------------------------------------------------------------------------- /VerificationCode/Code/VerificationCodeImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/Code/VerificationCodeImage.cs -------------------------------------------------------------------------------- /VerificationCode/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/Controllers/HomeController.cs -------------------------------------------------------------------------------- /VerificationCode/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/Program.cs -------------------------------------------------------------------------------- /VerificationCode/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/Properties/launchSettings.json -------------------------------------------------------------------------------- /VerificationCode/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/Startup.cs -------------------------------------------------------------------------------- /VerificationCode/VerificationCode.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/VerificationCode.csproj -------------------------------------------------------------------------------- /VerificationCode/VerificationCode.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/VerificationCode.csproj.user -------------------------------------------------------------------------------- /VerificationCode/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /VerificationCode/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /VerificationCode/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/appsettings.Development.json -------------------------------------------------------------------------------- /VerificationCode/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/appsettings.json -------------------------------------------------------------------------------- /VerificationCode/bin/Debug/netcoreapp2.1/VerificationCode.Views.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/bin/Debug/netcoreapp2.1/VerificationCode.Views.dll -------------------------------------------------------------------------------- /VerificationCode/bin/Debug/netcoreapp2.1/VerificationCode.Views.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/bin/Debug/netcoreapp2.1/VerificationCode.Views.pdb -------------------------------------------------------------------------------- /VerificationCode/bin/Debug/netcoreapp2.1/VerificationCode.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/bin/Debug/netcoreapp2.1/VerificationCode.deps.json -------------------------------------------------------------------------------- /VerificationCode/bin/Debug/netcoreapp2.1/VerificationCode.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/bin/Debug/netcoreapp2.1/VerificationCode.dll -------------------------------------------------------------------------------- /VerificationCode/bin/Debug/netcoreapp2.1/VerificationCode.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/bin/Debug/netcoreapp2.1/VerificationCode.pdb -------------------------------------------------------------------------------- /VerificationCode/bin/Debug/netcoreapp2.1/VerificationCode.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/bin/Debug/netcoreapp2.1/VerificationCode.runtimeconfig.dev.json -------------------------------------------------------------------------------- /VerificationCode/bin/Debug/netcoreapp2.1/VerificationCode.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/bin/Debug/netcoreapp2.1/VerificationCode.runtimeconfig.json -------------------------------------------------------------------------------- /VerificationCode/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs -------------------------------------------------------------------------------- /VerificationCode/obj/Debug/netcoreapp3.1/Razor/Views/Home/Index.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/obj/Debug/netcoreapp3.1/Razor/Views/Home/Index.cshtml.g.cs -------------------------------------------------------------------------------- /VerificationCode/obj/Debug/netcoreapp3.1/Razor/Views/Shared/_Layout.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/obj/Debug/netcoreapp3.1/Razor/Views/Shared/_Layout.cshtml.g.cs -------------------------------------------------------------------------------- /VerificationCode/obj/Debug/netcoreapp3.1/VerificationCode.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/obj/Debug/netcoreapp3.1/VerificationCode.AssemblyInfo.cs -------------------------------------------------------------------------------- /VerificationCode/obj/Debug/netcoreapp3.1/VerificationCode.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | e71079d9d1347aabd7f61e37bc6f9417c9ed0bce 2 | -------------------------------------------------------------------------------- /VerificationCode/obj/Debug/netcoreapp3.1/VerificationCode.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /VerificationCode/obj/Debug/netcoreapp3.1/VerificationCode.RazorAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | bce9d1fd1dae6408405f036ca73231a74d979f56 2 | -------------------------------------------------------------------------------- /VerificationCode/obj/Debug/netcoreapp3.1/VerificationCode.RazorAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/obj/Debug/netcoreapp3.1/VerificationCode.RazorAssemblyInfo.cs -------------------------------------------------------------------------------- /VerificationCode/obj/Debug/netcoreapp3.1/VerificationCode.RazorCoreGenerate.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/obj/Debug/netcoreapp3.1/VerificationCode.RazorCoreGenerate.cache -------------------------------------------------------------------------------- /VerificationCode/obj/Debug/netcoreapp3.1/VerificationCode.RazorTargetAssemblyInfo.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/obj/Debug/netcoreapp3.1/VerificationCode.RazorTargetAssemblyInfo.cache -------------------------------------------------------------------------------- /VerificationCode/obj/Debug/netcoreapp3.1/VerificationCode.RazorTargetAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/obj/Debug/netcoreapp3.1/VerificationCode.RazorTargetAssemblyInfo.cs -------------------------------------------------------------------------------- /VerificationCode/obj/Debug/netcoreapp3.1/VerificationCode.TagHelpers.input.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /VerificationCode/obj/Debug/netcoreapp3.1/VerificationCode.TagHelpers.output.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/obj/Debug/netcoreapp3.1/VerificationCode.TagHelpers.output.cache -------------------------------------------------------------------------------- /VerificationCode/obj/Debug/netcoreapp3.1/VerificationCode.Views.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/obj/Debug/netcoreapp3.1/VerificationCode.Views.dll -------------------------------------------------------------------------------- /VerificationCode/obj/Debug/netcoreapp3.1/VerificationCode.Views.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/obj/Debug/netcoreapp3.1/VerificationCode.Views.pdb -------------------------------------------------------------------------------- /VerificationCode/obj/Debug/netcoreapp3.1/VerificationCode.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/obj/Debug/netcoreapp3.1/VerificationCode.assets.cache -------------------------------------------------------------------------------- /VerificationCode/obj/Debug/netcoreapp3.1/VerificationCode.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /VerificationCode/obj/Debug/netcoreapp3.1/VerificationCode.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/obj/Debug/netcoreapp3.1/VerificationCode.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /VerificationCode/obj/Debug/netcoreapp3.1/VerificationCode.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/obj/Debug/netcoreapp3.1/VerificationCode.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /VerificationCode/obj/Debug/netcoreapp3.1/VerificationCode.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/obj/Debug/netcoreapp3.1/VerificationCode.dll -------------------------------------------------------------------------------- /VerificationCode/obj/Debug/netcoreapp3.1/VerificationCode.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/obj/Debug/netcoreapp3.1/VerificationCode.exe -------------------------------------------------------------------------------- /VerificationCode/obj/Debug/netcoreapp3.1/VerificationCode.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/obj/Debug/netcoreapp3.1/VerificationCode.pdb -------------------------------------------------------------------------------- /VerificationCode/obj/Debug/netcoreapp3.1/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/obj/Debug/netcoreapp3.1/apphost.exe -------------------------------------------------------------------------------- /VerificationCode/obj/Debug/netcoreapp3.1/staticwebassets/VerificationCode.StaticWebAssets.Manifest.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /VerificationCode/obj/Debug/netcoreapp3.1/staticwebassets/VerificationCode.StaticWebAssets.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /VerificationCode/obj/Release/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/obj/Release/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs -------------------------------------------------------------------------------- /VerificationCode/obj/Release/netcoreapp3.1/VerificationCode.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/obj/Release/netcoreapp3.1/VerificationCode.AssemblyInfo.cs -------------------------------------------------------------------------------- /VerificationCode/obj/Release/netcoreapp3.1/VerificationCode.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/obj/Release/netcoreapp3.1/VerificationCode.AssemblyInfoInputs.cache -------------------------------------------------------------------------------- /VerificationCode/obj/Release/netcoreapp3.1/VerificationCode.RazorAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | bce9d1fd1dae6408405f036ca73231a74d979f56 2 | -------------------------------------------------------------------------------- /VerificationCode/obj/Release/netcoreapp3.1/VerificationCode.RazorAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/obj/Release/netcoreapp3.1/VerificationCode.RazorAssemblyInfo.cs -------------------------------------------------------------------------------- /VerificationCode/obj/Release/netcoreapp3.1/VerificationCode.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/obj/Release/netcoreapp3.1/VerificationCode.assets.cache -------------------------------------------------------------------------------- /VerificationCode/obj/VerificationCode.csproj.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/obj/VerificationCode.csproj.nuget.cache -------------------------------------------------------------------------------- /VerificationCode/obj/VerificationCode.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/obj/VerificationCode.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /VerificationCode/obj/VerificationCode.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/obj/VerificationCode.csproj.nuget.g.props -------------------------------------------------------------------------------- /VerificationCode/obj/VerificationCode.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/obj/VerificationCode.csproj.nuget.g.targets -------------------------------------------------------------------------------- /VerificationCode/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/obj/project.assets.json -------------------------------------------------------------------------------- /VerificationCode/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/obj/project.nuget.cache -------------------------------------------------------------------------------- /VerificationCode/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/wwwroot/css/site.css -------------------------------------------------------------------------------- /VerificationCode/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /VerificationCode/wwwroot/css/slide-unlock.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/wwwroot/css/slide-unlock.css -------------------------------------------------------------------------------- /VerificationCode/wwwroot/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/wwwroot/css/style.css -------------------------------------------------------------------------------- /VerificationCode/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/wwwroot/favicon.ico -------------------------------------------------------------------------------- /VerificationCode/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /VerificationCode/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /VerificationCode/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /VerificationCode/wwwroot/images/shaxin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/wwwroot/images/shaxin.jpg -------------------------------------------------------------------------------- /VerificationCode/wwwroot/js/Particleground.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/wwwroot/js/Particleground.js -------------------------------------------------------------------------------- /VerificationCode/wwwroot/js/jquery1.11.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/wwwroot/js/jquery1.11.1.js -------------------------------------------------------------------------------- /VerificationCode/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/wwwroot/js/site.js -------------------------------------------------------------------------------- /VerificationCode/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /VerificationCode/wwwroot/js/slide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/wwwroot/js/slide.js -------------------------------------------------------------------------------- /VerificationCode/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /VerificationCode/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /VerificationCode/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /VerificationCode/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /VerificationCode/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /VerificationCode/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /VerificationCode/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /VerificationCode/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /VerificationCode/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /VerificationCode/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /VerificationCode/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /VerificationCode/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /VerificationCode/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /VerificationCode/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /VerificationCode/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /VerificationCode/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /VerificationCode/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /VerificationCode/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /VerificationCode/wwwroot/lib/jquery-validation-unobtrusive/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/wwwroot/lib/jquery-validation-unobtrusive/.bower.json -------------------------------------------------------------------------------- /VerificationCode/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /VerificationCode/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /VerificationCode/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /VerificationCode/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /VerificationCode/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /VerificationCode/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /VerificationCode/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /VerificationCode/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /VerificationCode/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /VerificationCode/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /VerificationCode/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /VerificationCode/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /VerificationCode/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /VerificationCode/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /VerificationCode/wwwroot/verificationcodeImage/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/wwwroot/verificationcodeImage/10.jpg -------------------------------------------------------------------------------- /VerificationCode/wwwroot/verificationcodeImage/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/wwwroot/verificationcodeImage/2.jpg -------------------------------------------------------------------------------- /VerificationCode/wwwroot/verificationcodeImage/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/wwwroot/verificationcodeImage/5.jpg -------------------------------------------------------------------------------- /VerificationCode/wwwroot/verificationcodeImage/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchengqun/NetCoreVerificationCode/HEAD/VerificationCode/wwwroot/verificationcodeImage/8.jpg --------------------------------------------------------------------------------