├── .gitattributes ├── .gitignore ├── LICENSE ├── LINEScratch.sln ├── LINEScratch ├── Controllers │ ├── HomeController.cs │ ├── LoginController.cs │ ├── PrizeController.cs │ └── WinnerController.cs ├── LINEScratch.csproj ├── Models │ ├── DBContext.cs │ ├── ErrorViewModel.cs │ ├── LINEMember.cs │ └── Prize.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Startup.cs ├── ViewModels │ ├── ListWinner.cs │ └── Result.cs ├── Views │ ├── Home │ │ ├── Index.cshtml │ │ ├── Loading.cshtml │ │ └── UseLINE.cshtml │ ├── Login │ │ └── Index.cshtml │ ├── Prize │ │ ├── Create.cshtml │ │ ├── Delete.cshtml │ │ ├── Edit.cshtml │ │ └── Index.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _Layout.cshtml │ │ ├── _LoginLayout.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── Winner │ │ ├── Index.cshtml │ │ └── Members.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── appsettings.Development.json ├── appsettings.json └── wwwroot │ ├── css │ └── site1.css │ ├── favicon.ico │ ├── img │ ├── brush1.png │ ├── cover.jpg │ ├── first-prize.png │ ├── qrcode.png │ ├── second-prize.png │ └── thankyou.png │ ├── js │ ├── ScratchIt.min.js │ └── site.js │ └── lib │ ├── bootstrap │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ │ └── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.js │ │ ├── bootstrap.js.map │ │ ├── bootstrap.min.js │ │ └── bootstrap.min.js.map │ ├── jquery-validation-unobtrusive │ ├── LICENSE.txt │ ├── jquery.validate.unobtrusive.js │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ ├── LICENSE.md │ └── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ └── jquery │ ├── LICENSE.txt │ └── dist │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LICENSE -------------------------------------------------------------------------------- /LINEScratch.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch.sln -------------------------------------------------------------------------------- /LINEScratch/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/Controllers/HomeController.cs -------------------------------------------------------------------------------- /LINEScratch/Controllers/LoginController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/Controllers/LoginController.cs -------------------------------------------------------------------------------- /LINEScratch/Controllers/PrizeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/Controllers/PrizeController.cs -------------------------------------------------------------------------------- /LINEScratch/Controllers/WinnerController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/Controllers/WinnerController.cs -------------------------------------------------------------------------------- /LINEScratch/LINEScratch.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/LINEScratch.csproj -------------------------------------------------------------------------------- /LINEScratch/Models/DBContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/Models/DBContext.cs -------------------------------------------------------------------------------- /LINEScratch/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /LINEScratch/Models/LINEMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/Models/LINEMember.cs -------------------------------------------------------------------------------- /LINEScratch/Models/Prize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/Models/Prize.cs -------------------------------------------------------------------------------- /LINEScratch/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/Program.cs -------------------------------------------------------------------------------- /LINEScratch/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/Properties/launchSettings.json -------------------------------------------------------------------------------- /LINEScratch/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/Startup.cs -------------------------------------------------------------------------------- /LINEScratch/ViewModels/ListWinner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/ViewModels/ListWinner.cs -------------------------------------------------------------------------------- /LINEScratch/ViewModels/Result.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/ViewModels/Result.cs -------------------------------------------------------------------------------- /LINEScratch/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /LINEScratch/Views/Home/Loading.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/Views/Home/Loading.cshtml -------------------------------------------------------------------------------- /LINEScratch/Views/Home/UseLINE.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/Views/Home/UseLINE.cshtml -------------------------------------------------------------------------------- /LINEScratch/Views/Login/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/Views/Login/Index.cshtml -------------------------------------------------------------------------------- /LINEScratch/Views/Prize/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/Views/Prize/Create.cshtml -------------------------------------------------------------------------------- /LINEScratch/Views/Prize/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/Views/Prize/Delete.cshtml -------------------------------------------------------------------------------- /LINEScratch/Views/Prize/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/Views/Prize/Edit.cshtml -------------------------------------------------------------------------------- /LINEScratch/Views/Prize/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/Views/Prize/Index.cshtml -------------------------------------------------------------------------------- /LINEScratch/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /LINEScratch/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /LINEScratch/Views/Shared/_LoginLayout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/Views/Shared/_LoginLayout.cshtml -------------------------------------------------------------------------------- /LINEScratch/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /LINEScratch/Views/Winner/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/Views/Winner/Index.cshtml -------------------------------------------------------------------------------- /LINEScratch/Views/Winner/Members.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/Views/Winner/Members.cshtml -------------------------------------------------------------------------------- /LINEScratch/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /LINEScratch/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /LINEScratch/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/appsettings.Development.json -------------------------------------------------------------------------------- /LINEScratch/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/appsettings.json -------------------------------------------------------------------------------- /LINEScratch/wwwroot/css/site1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/wwwroot/css/site1.css -------------------------------------------------------------------------------- /LINEScratch/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/wwwroot/favicon.ico -------------------------------------------------------------------------------- /LINEScratch/wwwroot/img/brush1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/wwwroot/img/brush1.png -------------------------------------------------------------------------------- /LINEScratch/wwwroot/img/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/wwwroot/img/cover.jpg -------------------------------------------------------------------------------- /LINEScratch/wwwroot/img/first-prize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/wwwroot/img/first-prize.png -------------------------------------------------------------------------------- /LINEScratch/wwwroot/img/qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/wwwroot/img/qrcode.png -------------------------------------------------------------------------------- /LINEScratch/wwwroot/img/second-prize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/wwwroot/img/second-prize.png -------------------------------------------------------------------------------- /LINEScratch/wwwroot/img/thankyou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/wwwroot/img/thankyou.png -------------------------------------------------------------------------------- /LINEScratch/wwwroot/js/ScratchIt.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/wwwroot/js/ScratchIt.min.js -------------------------------------------------------------------------------- /LINEScratch/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/wwwroot/js/site.js -------------------------------------------------------------------------------- /LINEScratch/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /LINEScratch/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /LINEScratch/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /LINEScratch/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /LINEScratch/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /LINEScratch/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /LINEScratch/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /LINEScratch/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /LINEScratch/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /LINEScratch/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /LINEScratch/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /LINEScratch/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /LINEScratch/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /LINEScratch/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /LINEScratch/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /LINEScratch/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /LINEScratch/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /LINEScratch/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /LINEScratch/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /LINEScratch/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /LINEScratch/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /LINEScratch/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /LINEScratch/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /LINEScratch/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /LINEScratch/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /LINEScratch/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /LINEScratch/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /LINEScratch/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /LINEScratch/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /LINEScratch/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /LINEScratch/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /LINEScratch/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /LINEScratch/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/LINEScratch/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ko-Ko-Kirk/LINEScratch/HEAD/README.md --------------------------------------------------------------------------------