├── LICENSE ├── README.md ├── app.py ├── config.json ├── requirements.txt ├── static ├── scripts.js └── style.css └── templates ├── index.html ├── login.html ├── register.html ├── short_url.html └── shortener.html /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-thefl/URL-Shortner/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-thefl/URL-Shortner/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-thefl/URL-Shortner/HEAD/app.py -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-thefl/URL-Shortner/HEAD/config.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-thefl/URL-Shortner/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-thefl/URL-Shortner/HEAD/static/scripts.js -------------------------------------------------------------------------------- /static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-thefl/URL-Shortner/HEAD/static/style.css -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-thefl/URL-Shortner/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-thefl/URL-Shortner/HEAD/templates/login.html -------------------------------------------------------------------------------- /templates/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-thefl/URL-Shortner/HEAD/templates/register.html -------------------------------------------------------------------------------- /templates/short_url.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-thefl/URL-Shortner/HEAD/templates/short_url.html -------------------------------------------------------------------------------- /templates/shortener.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-thefl/URL-Shortner/HEAD/templates/shortener.html --------------------------------------------------------------------------------