├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md └── motekarteknologi ├── motekarteknologi.sln └── motekarteknologi ├── Controllers ├── AccountController.cs ├── HomeController.cs ├── ManageController.cs ├── ProductsController.cs ├── SalesOrderLinesController.cs └── SalesOrdersController.cs ├── Data └── ApplicationDbContext.cs ├── Extensions ├── EmailSenderExtensions.cs └── UrlHelperExtensions.cs ├── Migrations ├── 20180317042448_awal.Designer.cs ├── 20180317042448_awal.cs └── ApplicationDbContextModelSnapshot.cs ├── Models ├── AccountViewModels │ ├── ExternalLoginViewModel.cs │ ├── ForgotPasswordViewModel.cs │ ├── LoginViewModel.cs │ ├── LoginWith2faViewModel.cs │ ├── LoginWithRecoveryCodeViewModel.cs │ ├── RegisterViewModel.cs │ └── ResetPasswordViewModel.cs ├── ApplicationUser.cs ├── ErrorViewModel.cs ├── ManageViewModels │ ├── ChangePasswordViewModel.cs │ ├── EnableAuthenticatorViewModel.cs │ ├── ExternalLoginsViewModel.cs │ ├── IndexViewModel.cs │ ├── RemoveLoginViewModel.cs │ ├── SetPasswordViewModel.cs │ ├── ShowRecoveryCodesViewModel.cs │ └── TwoFactorAuthenticationViewModel.cs ├── Product.cs ├── SalesOrder.cs └── SalesOrderLine.cs ├── Program.cs ├── Services ├── EmailSender.cs └── IEmailSender.cs ├── Startup.cs ├── ViewModels ├── Modal.cs ├── ModalFooter.cs ├── ModalHeader.cs └── ModalSize.cs ├── Views ├── Account │ ├── AccessDenied.cshtml │ ├── ConfirmEmail.cshtml │ ├── ExternalLogin.cshtml │ ├── ForgotPassword.cshtml │ ├── ForgotPasswordConfirmation.cshtml │ ├── Lockout.cshtml │ ├── Login.cshtml │ ├── LoginWith2fa.cshtml │ ├── LoginWithRecoveryCode.cshtml │ ├── Register.cshtml │ ├── ResetPassword.cshtml │ ├── ResetPasswordConfirmation.cshtml │ └── SignedOut.cshtml ├── Home │ ├── About.cshtml │ ├── Contact.cshtml │ └── Index.cshtml ├── Manage │ ├── ChangePassword.cshtml │ ├── Disable2fa.cshtml │ ├── EnableAuthenticator.cshtml │ ├── ExternalLogins.cshtml │ ├── GenerateRecoveryCodes.cshtml │ ├── Index.cshtml │ ├── ManageNavPages.cs │ ├── ResetAuthenticator.cshtml │ ├── SetPassword.cshtml │ ├── ShowRecoveryCodes.cshtml │ ├── TwoFactorAuthentication.cshtml │ ├── _Layout.cshtml │ ├── _ManageNav.cshtml │ ├── _StatusMessage.cshtml │ └── _ViewImports.cshtml ├── Products │ ├── Create.cshtml │ ├── Delete.cshtml │ ├── Details.cshtml │ ├── Edit.cshtml │ └── Index.cshtml ├── SalesOrderLines │ ├── Create.cshtml │ ├── Delete.cshtml │ ├── Details.cshtml │ ├── Edit.cshtml │ └── Index.cshtml ├── SalesOrders │ ├── Create.cshtml │ ├── Delete.cshtml │ ├── Details.cshtml │ ├── Edit.cshtml │ ├── Index.cshtml │ └── _FormLine.cshtml ├── Shared │ ├── Error.cshtml │ ├── _Layout.cshtml │ ├── _LoginPartial.cshtml │ ├── _Modal.cshtml │ ├── _ModalDelete.cshtml │ ├── _ModalFooter.cshtml │ ├── _ModalHeader.cshtml │ ├── _ModalScriptsInit.cshtml │ └── _ValidationScriptsPartial.cshtml ├── _ViewImports.cshtml └── _ViewStart.cshtml ├── appsettings.Development.json ├── appsettings.json ├── bundleconfig.json ├── motekarteknologi.csproj └── wwwroot ├── css ├── site.css └── site.min.css ├── favicon.ico ├── images ├── banner1.svg ├── banner2.svg ├── banner3.svg ├── banner4.svg └── master-details-modal-form.png ├── js ├── site.js └── site.min.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 ├── 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 /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/README.md -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi.sln -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Controllers/AccountController.cs -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Controllers/HomeController.cs -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Controllers/ManageController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Controllers/ManageController.cs -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Controllers/ProductsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Controllers/ProductsController.cs -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Controllers/SalesOrderLinesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Controllers/SalesOrderLinesController.cs -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Controllers/SalesOrdersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Controllers/SalesOrdersController.cs -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Data/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Data/ApplicationDbContext.cs -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Extensions/EmailSenderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Extensions/EmailSenderExtensions.cs -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Extensions/UrlHelperExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Extensions/UrlHelperExtensions.cs -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Migrations/20180317042448_awal.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Migrations/20180317042448_awal.Designer.cs -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Migrations/20180317042448_awal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Migrations/20180317042448_awal.cs -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Migrations/ApplicationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Migrations/ApplicationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Models/AccountViewModels/ExternalLoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Models/AccountViewModels/ExternalLoginViewModel.cs -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Models/AccountViewModels/ForgotPasswordViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Models/AccountViewModels/ForgotPasswordViewModel.cs -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Models/AccountViewModels/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Models/AccountViewModels/LoginViewModel.cs -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Models/AccountViewModels/LoginWith2faViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Models/AccountViewModels/LoginWith2faViewModel.cs -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Models/AccountViewModels/LoginWithRecoveryCodeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Models/AccountViewModels/LoginWithRecoveryCodeViewModel.cs -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Models/AccountViewModels/RegisterViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Models/AccountViewModels/RegisterViewModel.cs -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Models/AccountViewModels/ResetPasswordViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Models/AccountViewModels/ResetPasswordViewModel.cs -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Models/ApplicationUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Models/ApplicationUser.cs -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Models/ManageViewModels/ChangePasswordViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Models/ManageViewModels/ChangePasswordViewModel.cs -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Models/ManageViewModels/EnableAuthenticatorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Models/ManageViewModels/EnableAuthenticatorViewModel.cs -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Models/ManageViewModels/ExternalLoginsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Models/ManageViewModels/ExternalLoginsViewModel.cs -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Models/ManageViewModels/IndexViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Models/ManageViewModels/IndexViewModel.cs -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Models/ManageViewModels/RemoveLoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Models/ManageViewModels/RemoveLoginViewModel.cs -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Models/ManageViewModels/SetPasswordViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Models/ManageViewModels/SetPasswordViewModel.cs -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Models/ManageViewModels/ShowRecoveryCodesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Models/ManageViewModels/ShowRecoveryCodesViewModel.cs -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Models/ManageViewModels/TwoFactorAuthenticationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Models/ManageViewModels/TwoFactorAuthenticationViewModel.cs -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Models/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Models/Product.cs -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Models/SalesOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Models/SalesOrder.cs -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Models/SalesOrderLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Models/SalesOrderLine.cs -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Program.cs -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Services/EmailSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Services/EmailSender.cs -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Services/IEmailSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Services/IEmailSender.cs -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Startup.cs -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/ViewModels/Modal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/ViewModels/Modal.cs -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/ViewModels/ModalFooter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/ViewModels/ModalFooter.cs -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/ViewModels/ModalHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/ViewModels/ModalHeader.cs -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/ViewModels/ModalSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/ViewModels/ModalSize.cs -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Views/Account/AccessDenied.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Views/Account/AccessDenied.cshtml -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Views/Account/ConfirmEmail.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Views/Account/ConfirmEmail.cshtml -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Views/Account/ExternalLogin.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Views/Account/ExternalLogin.cshtml -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Views/Account/ForgotPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Views/Account/ForgotPassword.cshtml -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Views/Account/ForgotPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Views/Account/ForgotPasswordConfirmation.cshtml -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Views/Account/Lockout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Views/Account/Lockout.cshtml -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Views/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Views/Account/Login.cshtml -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Views/Account/LoginWith2fa.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Views/Account/LoginWith2fa.cshtml -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Views/Account/LoginWithRecoveryCode.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Views/Account/LoginWithRecoveryCode.cshtml -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Views/Account/Register.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Views/Account/Register.cshtml -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Views/Account/ResetPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Views/Account/ResetPassword.cshtml -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Views/Account/ResetPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Views/Account/ResetPasswordConfirmation.cshtml -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Views/Account/SignedOut.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Views/Account/SignedOut.cshtml -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Views/Home/About.cshtml -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Views/Manage/ChangePassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Views/Manage/ChangePassword.cshtml -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Views/Manage/Disable2fa.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Views/Manage/Disable2fa.cshtml -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Views/Manage/EnableAuthenticator.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Views/Manage/EnableAuthenticator.cshtml -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Views/Manage/ExternalLogins.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Views/Manage/ExternalLogins.cshtml -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Views/Manage/GenerateRecoveryCodes.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Views/Manage/GenerateRecoveryCodes.cshtml -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Views/Manage/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Views/Manage/Index.cshtml -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Views/Manage/ManageNavPages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Views/Manage/ManageNavPages.cs -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Views/Manage/ResetAuthenticator.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Views/Manage/ResetAuthenticator.cshtml -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Views/Manage/SetPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Views/Manage/SetPassword.cshtml -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Views/Manage/ShowRecoveryCodes.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Views/Manage/ShowRecoveryCodes.cshtml -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Views/Manage/TwoFactorAuthentication.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Views/Manage/TwoFactorAuthentication.cshtml -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Views/Manage/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Views/Manage/_Layout.cshtml -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Views/Manage/_ManageNav.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Views/Manage/_ManageNav.cshtml -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Views/Manage/_StatusMessage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Views/Manage/_StatusMessage.cshtml -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Views/Manage/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using motekarteknologi.Views.Manage -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Views/Products/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Views/Products/Create.cshtml -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Views/Products/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Views/Products/Delete.cshtml -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Views/Products/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Views/Products/Details.cshtml -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Views/Products/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Views/Products/Edit.cshtml -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Views/Products/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Views/Products/Index.cshtml -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Views/SalesOrderLines/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Views/SalesOrderLines/Create.cshtml -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Views/SalesOrderLines/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Views/SalesOrderLines/Delete.cshtml -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Views/SalesOrderLines/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Views/SalesOrderLines/Details.cshtml -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Views/SalesOrderLines/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Views/SalesOrderLines/Edit.cshtml -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Views/SalesOrderLines/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Views/SalesOrderLines/Index.cshtml -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Views/SalesOrders/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Views/SalesOrders/Create.cshtml -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Views/SalesOrders/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Views/SalesOrders/Delete.cshtml -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Views/SalesOrders/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Views/SalesOrders/Details.cshtml -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Views/SalesOrders/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Views/SalesOrders/Edit.cshtml -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Views/SalesOrders/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Views/SalesOrders/Index.cshtml -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Views/SalesOrders/_FormLine.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Views/SalesOrders/_FormLine.cshtml -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Views/Shared/_LoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Views/Shared/_LoginPartial.cshtml -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Views/Shared/_Modal.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Views/Shared/_Modal.cshtml -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Views/Shared/_ModalDelete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Views/Shared/_ModalDelete.cshtml -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Views/Shared/_ModalFooter.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Views/Shared/_ModalFooter.cshtml -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Views/Shared/_ModalHeader.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Views/Shared/_ModalHeader.cshtml -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Views/Shared/_ModalScriptsInit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Views/Shared/_ModalScriptsInit.cshtml -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/appsettings.Development.json -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/appsettings.json -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/bundleconfig.json -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/motekarteknologi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/motekarteknologi.csproj -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/wwwroot/css/site.css -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/wwwroot/favicon.ico -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/wwwroot/images/banner4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/wwwroot/images/banner4.svg -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/wwwroot/images/master-details-modal-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/wwwroot/images/master-details-modal-form.png -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your JavaScript code. 2 | -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/wwwroot/lib/jquery-validation-unobtrusive/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/wwwroot/lib/jquery-validation-unobtrusive/.bower.json -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /motekarteknologi/motekarteknologi/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/ASP.NET-Core-2-jQuery-Ajax-Modal-Form/HEAD/motekarteknologi/motekarteknologi/wwwroot/lib/jquery/dist/jquery.min.map --------------------------------------------------------------------------------