├── .htaccess ├── README.md ├── apple-touch-icon-120x120-precomposed.png ├── apple-touch-icon-152x152-precomposed.png ├── create-playlist-green.png ├── css ├── bootstrap.css ├── custom_style.css └── icons.css ├── export.html ├── favicon.ico ├── fonts ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings-regular.ttf ├── glyphicons-halflings-regular.woff ├── glyphicons-halflings-regular.woff2 ├── icomoon.eot ├── icomoon.svg ├── icomoon.ttf ├── icomoon.woff └── icomoon │ ├── Read Me.txt │ ├── demo-files │ ├── demo.css │ └── demo.js │ ├── demo.html │ ├── fonts │ ├── icomoon.eot │ ├── icomoon.svg │ ├── icomoon.ttf │ └── icomoon.woff │ ├── selection.json │ └── style.css ├── index.html ├── js ├── bootstrap.js ├── export.js ├── jquery-1.12.0.js └── login.js ├── log_in-desktop-large.png └── record.png /.htaccess: -------------------------------------------------------------------------------- 1 | Header set Access-Control-Allow-Origin "*" 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim93/DiscogsToSpotify/HEAD/README.md -------------------------------------------------------------------------------- /apple-touch-icon-120x120-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim93/DiscogsToSpotify/HEAD/apple-touch-icon-120x120-precomposed.png -------------------------------------------------------------------------------- /apple-touch-icon-152x152-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim93/DiscogsToSpotify/HEAD/apple-touch-icon-152x152-precomposed.png -------------------------------------------------------------------------------- /create-playlist-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim93/DiscogsToSpotify/HEAD/create-playlist-green.png -------------------------------------------------------------------------------- /css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim93/DiscogsToSpotify/HEAD/css/bootstrap.css -------------------------------------------------------------------------------- /css/custom_style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim93/DiscogsToSpotify/HEAD/css/custom_style.css -------------------------------------------------------------------------------- /css/icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim93/DiscogsToSpotify/HEAD/css/icons.css -------------------------------------------------------------------------------- /export.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim93/DiscogsToSpotify/HEAD/export.html -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim93/DiscogsToSpotify/HEAD/favicon.ico -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim93/DiscogsToSpotify/HEAD/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim93/DiscogsToSpotify/HEAD/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim93/DiscogsToSpotify/HEAD/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim93/DiscogsToSpotify/HEAD/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim93/DiscogsToSpotify/HEAD/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /fonts/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim93/DiscogsToSpotify/HEAD/fonts/icomoon.eot -------------------------------------------------------------------------------- /fonts/icomoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim93/DiscogsToSpotify/HEAD/fonts/icomoon.svg -------------------------------------------------------------------------------- /fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim93/DiscogsToSpotify/HEAD/fonts/icomoon.ttf -------------------------------------------------------------------------------- /fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim93/DiscogsToSpotify/HEAD/fonts/icomoon.woff -------------------------------------------------------------------------------- /fonts/icomoon/Read Me.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim93/DiscogsToSpotify/HEAD/fonts/icomoon/Read Me.txt -------------------------------------------------------------------------------- /fonts/icomoon/demo-files/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim93/DiscogsToSpotify/HEAD/fonts/icomoon/demo-files/demo.css -------------------------------------------------------------------------------- /fonts/icomoon/demo-files/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim93/DiscogsToSpotify/HEAD/fonts/icomoon/demo-files/demo.js -------------------------------------------------------------------------------- /fonts/icomoon/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim93/DiscogsToSpotify/HEAD/fonts/icomoon/demo.html -------------------------------------------------------------------------------- /fonts/icomoon/fonts/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim93/DiscogsToSpotify/HEAD/fonts/icomoon/fonts/icomoon.eot -------------------------------------------------------------------------------- /fonts/icomoon/fonts/icomoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim93/DiscogsToSpotify/HEAD/fonts/icomoon/fonts/icomoon.svg -------------------------------------------------------------------------------- /fonts/icomoon/fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim93/DiscogsToSpotify/HEAD/fonts/icomoon/fonts/icomoon.ttf -------------------------------------------------------------------------------- /fonts/icomoon/fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim93/DiscogsToSpotify/HEAD/fonts/icomoon/fonts/icomoon.woff -------------------------------------------------------------------------------- /fonts/icomoon/selection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim93/DiscogsToSpotify/HEAD/fonts/icomoon/selection.json -------------------------------------------------------------------------------- /fonts/icomoon/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim93/DiscogsToSpotify/HEAD/fonts/icomoon/style.css -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim93/DiscogsToSpotify/HEAD/index.html -------------------------------------------------------------------------------- /js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim93/DiscogsToSpotify/HEAD/js/bootstrap.js -------------------------------------------------------------------------------- /js/export.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim93/DiscogsToSpotify/HEAD/js/export.js -------------------------------------------------------------------------------- /js/jquery-1.12.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim93/DiscogsToSpotify/HEAD/js/jquery-1.12.0.js -------------------------------------------------------------------------------- /js/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim93/DiscogsToSpotify/HEAD/js/login.js -------------------------------------------------------------------------------- /log_in-desktop-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim93/DiscogsToSpotify/HEAD/log_in-desktop-large.png -------------------------------------------------------------------------------- /record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim93/DiscogsToSpotify/HEAD/record.png --------------------------------------------------------------------------------