├── LICENSE ├── README.md ├── area.js ├── area.json ├── areas.js ├── bankaccount.js ├── bootstrap-datetimepicker ├── .gitattributes ├── .gitignore ├── .npmignore ├── .travis.yml ├── css │ ├── bootstrap-datetimepicker.css │ └── bootstrap-datetimepicker.min.css └── js │ ├── bootstrap-datetimepicker.js │ ├── bootstrap-datetimepicker.min.js │ └── locales │ ├── bootstrap-datetimepicker.ar.js │ ├── bootstrap-datetimepicker.az.js │ ├── bootstrap-datetimepicker.bg.js │ ├── bootstrap-datetimepicker.bn.js │ ├── bootstrap-datetimepicker.ca.js │ ├── bootstrap-datetimepicker.cs.js │ ├── bootstrap-datetimepicker.da.js │ ├── bootstrap-datetimepicker.de.js │ ├── bootstrap-datetimepicker.ee.js │ ├── bootstrap-datetimepicker.el.js │ ├── bootstrap-datetimepicker.es.js │ ├── bootstrap-datetimepicker.fi.js │ ├── bootstrap-datetimepicker.fr.js │ ├── bootstrap-datetimepicker.he.js │ ├── bootstrap-datetimepicker.hr.js │ ├── bootstrap-datetimepicker.hu.js │ ├── bootstrap-datetimepicker.hy.js │ ├── bootstrap-datetimepicker.id.js │ ├── bootstrap-datetimepicker.is.js │ ├── bootstrap-datetimepicker.it.js │ ├── bootstrap-datetimepicker.ja.js │ ├── bootstrap-datetimepicker.ka.js │ ├── bootstrap-datetimepicker.ko.js │ ├── bootstrap-datetimepicker.lt.js │ ├── bootstrap-datetimepicker.lv.js │ ├── bootstrap-datetimepicker.ms.js │ ├── bootstrap-datetimepicker.nb.js │ ├── bootstrap-datetimepicker.nl.js │ ├── bootstrap-datetimepicker.no.js │ ├── bootstrap-datetimepicker.pl.js │ ├── bootstrap-datetimepicker.pt-BR.js │ ├── bootstrap-datetimepicker.pt.js │ ├── bootstrap-datetimepicker.ro.js │ ├── bootstrap-datetimepicker.rs-latin.js │ ├── bootstrap-datetimepicker.rs.js │ ├── bootstrap-datetimepicker.ru.js │ ├── bootstrap-datetimepicker.sk.js │ ├── bootstrap-datetimepicker.sl.js │ ├── bootstrap-datetimepicker.sv.js │ ├── bootstrap-datetimepicker.sw.js │ ├── bootstrap-datetimepicker.th.js │ ├── bootstrap-datetimepicker.tr.js │ ├── bootstrap-datetimepicker.ua.js │ ├── bootstrap-datetimepicker.uk.js │ ├── bootstrap-datetimepicker.zh-CN.js │ └── bootstrap-datetimepicker.zh-TW.js ├── bootstrap ├── css │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css │ ├── bootstrap.css │ ├── bootstrap.css.map │ └── bootstrap.min.css ├── 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 ├── creditCode.js ├── idCard.js ├── index.html ├── js └── jquery-2.1.0.js ├── orgCode.js ├── phoneNo.js ├── test.html └── toastr ├── toastr.css ├── toastr.js ├── toastr.min.css └── toastr.min.js /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/README.md -------------------------------------------------------------------------------- /area.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/area.js -------------------------------------------------------------------------------- /area.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/area.json -------------------------------------------------------------------------------- /areas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/areas.js -------------------------------------------------------------------------------- /bankaccount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bankaccount.js -------------------------------------------------------------------------------- /bootstrap-datetimepicker/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap-datetimepicker/.gitattributes -------------------------------------------------------------------------------- /bootstrap-datetimepicker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap-datetimepicker/.gitignore -------------------------------------------------------------------------------- /bootstrap-datetimepicker/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap-datetimepicker/.npmignore -------------------------------------------------------------------------------- /bootstrap-datetimepicker/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap-datetimepicker/.travis.yml -------------------------------------------------------------------------------- /bootstrap-datetimepicker/css/bootstrap-datetimepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap-datetimepicker/css/bootstrap-datetimepicker.css -------------------------------------------------------------------------------- /bootstrap-datetimepicker/css/bootstrap-datetimepicker.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap-datetimepicker/css/bootstrap-datetimepicker.min.css -------------------------------------------------------------------------------- /bootstrap-datetimepicker/js/bootstrap-datetimepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap-datetimepicker/js/bootstrap-datetimepicker.js -------------------------------------------------------------------------------- /bootstrap-datetimepicker/js/bootstrap-datetimepicker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap-datetimepicker/js/bootstrap-datetimepicker.min.js -------------------------------------------------------------------------------- /bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.ar.js -------------------------------------------------------------------------------- /bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.az.js -------------------------------------------------------------------------------- /bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.bg.js -------------------------------------------------------------------------------- /bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.bn.js -------------------------------------------------------------------------------- /bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.ca.js -------------------------------------------------------------------------------- /bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.cs.js -------------------------------------------------------------------------------- /bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.da.js -------------------------------------------------------------------------------- /bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.de.js -------------------------------------------------------------------------------- /bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.ee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.ee.js -------------------------------------------------------------------------------- /bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.el.js -------------------------------------------------------------------------------- /bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.es.js -------------------------------------------------------------------------------- /bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.fi.js -------------------------------------------------------------------------------- /bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.fr.js -------------------------------------------------------------------------------- /bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.he.js -------------------------------------------------------------------------------- /bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.hr.js -------------------------------------------------------------------------------- /bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.hu.js -------------------------------------------------------------------------------- /bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.hy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.hy.js -------------------------------------------------------------------------------- /bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.id.js -------------------------------------------------------------------------------- /bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.is.js -------------------------------------------------------------------------------- /bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.it.js -------------------------------------------------------------------------------- /bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.ja.js -------------------------------------------------------------------------------- /bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.ka.js -------------------------------------------------------------------------------- /bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.ko.js -------------------------------------------------------------------------------- /bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.lt.js -------------------------------------------------------------------------------- /bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.lv.js -------------------------------------------------------------------------------- /bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.ms.js -------------------------------------------------------------------------------- /bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.nb.js -------------------------------------------------------------------------------- /bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.nl.js -------------------------------------------------------------------------------- /bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.no.js -------------------------------------------------------------------------------- /bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.pl.js -------------------------------------------------------------------------------- /bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.pt-BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.pt-BR.js -------------------------------------------------------------------------------- /bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.pt.js -------------------------------------------------------------------------------- /bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.ro.js -------------------------------------------------------------------------------- /bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.rs-latin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.rs-latin.js -------------------------------------------------------------------------------- /bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.rs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.rs.js -------------------------------------------------------------------------------- /bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.ru.js -------------------------------------------------------------------------------- /bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.sk.js -------------------------------------------------------------------------------- /bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.sl.js -------------------------------------------------------------------------------- /bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.sv.js -------------------------------------------------------------------------------- /bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.sw.js -------------------------------------------------------------------------------- /bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.th.js -------------------------------------------------------------------------------- /bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.tr.js -------------------------------------------------------------------------------- /bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.ua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.ua.js -------------------------------------------------------------------------------- /bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.uk.js -------------------------------------------------------------------------------- /bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.zh-CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.zh-CN.js -------------------------------------------------------------------------------- /bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.zh-TW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.zh-TW.js -------------------------------------------------------------------------------- /bootstrap/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap/css/bootstrap-theme.css -------------------------------------------------------------------------------- /bootstrap/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /bootstrap/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /bootstrap/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/bootstrap/js/npm.js -------------------------------------------------------------------------------- /creditCode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/creditCode.js -------------------------------------------------------------------------------- /idCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/idCard.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/index.html -------------------------------------------------------------------------------- /js/jquery-2.1.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/js/jquery-2.1.0.js -------------------------------------------------------------------------------- /orgCode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/orgCode.js -------------------------------------------------------------------------------- /phoneNo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/phoneNo.js -------------------------------------------------------------------------------- /test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/test.html -------------------------------------------------------------------------------- /toastr/toastr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/toastr/toastr.css -------------------------------------------------------------------------------- /toastr/toastr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/toastr/toastr.js -------------------------------------------------------------------------------- /toastr/toastr.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/toastr/toastr.min.css -------------------------------------------------------------------------------- /toastr/toastr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbeginagain/generator/HEAD/toastr/toastr.min.js --------------------------------------------------------------------------------