├── README.md ├── accounts └── username │ ├── contacts │ ├── 324423.txt │ ├── 3244231.txt │ └── 3244qwe.txt │ ├── name.txt │ ├── password.txt │ ├── template │ ├── description.txt │ └── template_no.txt │ └── views.txt ├── app.py ├── requirements.txt ├── static ├── 404.css ├── dashboard.css ├── edittemplate.css ├── ic.png ├── login-script.js └── login.css └── temp ├── 404.html ├── dashboard.html ├── delete.html ├── edittemplate.html ├── index.html ├── login.html ├── select ├── Classic.html ├── Modern.html └── Roman.html └── signup.html /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhineetraj1/flask-web-hosting/HEAD/README.md -------------------------------------------------------------------------------- /accounts/username/contacts/324423.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhineetraj1/flask-web-hosting/HEAD/accounts/username/contacts/324423.txt -------------------------------------------------------------------------------- /accounts/username/contacts/3244231.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhineetraj1/flask-web-hosting/HEAD/accounts/username/contacts/3244231.txt -------------------------------------------------------------------------------- /accounts/username/contacts/3244qwe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhineetraj1/flask-web-hosting/HEAD/accounts/username/contacts/3244qwe.txt -------------------------------------------------------------------------------- /accounts/username/name.txt: -------------------------------------------------------------------------------- 1 | Abhineet Raj -------------------------------------------------------------------------------- /accounts/username/password.txt: -------------------------------------------------------------------------------- 1 | password -------------------------------------------------------------------------------- /accounts/username/template/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhineetraj1/flask-web-hosting/HEAD/accounts/username/template/description.txt -------------------------------------------------------------------------------- /accounts/username/template/template_no.txt: -------------------------------------------------------------------------------- 1 | Classic -------------------------------------------------------------------------------- /accounts/username/views.txt: -------------------------------------------------------------------------------- 1 | 16 -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhineetraj1/flask-web-hosting/HEAD/app.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | flask -------------------------------------------------------------------------------- /static/404.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhineetraj1/flask-web-hosting/HEAD/static/404.css -------------------------------------------------------------------------------- /static/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhineetraj1/flask-web-hosting/HEAD/static/dashboard.css -------------------------------------------------------------------------------- /static/edittemplate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhineetraj1/flask-web-hosting/HEAD/static/edittemplate.css -------------------------------------------------------------------------------- /static/ic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhineetraj1/flask-web-hosting/HEAD/static/ic.png -------------------------------------------------------------------------------- /static/login-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhineetraj1/flask-web-hosting/HEAD/static/login-script.js -------------------------------------------------------------------------------- /static/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhineetraj1/flask-web-hosting/HEAD/static/login.css -------------------------------------------------------------------------------- /temp/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhineetraj1/flask-web-hosting/HEAD/temp/404.html -------------------------------------------------------------------------------- /temp/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhineetraj1/flask-web-hosting/HEAD/temp/dashboard.html -------------------------------------------------------------------------------- /temp/delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhineetraj1/flask-web-hosting/HEAD/temp/delete.html -------------------------------------------------------------------------------- /temp/edittemplate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhineetraj1/flask-web-hosting/HEAD/temp/edittemplate.html -------------------------------------------------------------------------------- /temp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhineetraj1/flask-web-hosting/HEAD/temp/index.html -------------------------------------------------------------------------------- /temp/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhineetraj1/flask-web-hosting/HEAD/temp/login.html -------------------------------------------------------------------------------- /temp/select/Classic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhineetraj1/flask-web-hosting/HEAD/temp/select/Classic.html -------------------------------------------------------------------------------- /temp/select/Modern.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhineetraj1/flask-web-hosting/HEAD/temp/select/Modern.html -------------------------------------------------------------------------------- /temp/select/Roman.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhineetraj1/flask-web-hosting/HEAD/temp/select/Roman.html -------------------------------------------------------------------------------- /temp/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhineetraj1/flask-web-hosting/HEAD/temp/signup.html --------------------------------------------------------------------------------