├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── screenshoot └── screenshoot1.png ├── setup.cfg ├── setup.py └── simpleui_captcha ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations └── __init__.py ├── settings.py ├── static └── simpleui_captcha │ └── jquery-3.7.1.min.js ├── templates └── admin │ └── login.html ├── urls.py └── views.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dust8/django-simpleui-captcha/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dust8/django-simpleui-captcha/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dust8/django-simpleui-captcha/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dust8/django-simpleui-captcha/HEAD/README.md -------------------------------------------------------------------------------- /screenshoot/screenshoot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dust8/django-simpleui-captcha/HEAD/screenshoot/screenshoot1.png -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dust8/django-simpleui-captcha/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dust8/django-simpleui-captcha/HEAD/setup.py -------------------------------------------------------------------------------- /simpleui_captcha/__init__.py: -------------------------------------------------------------------------------- 1 | from .settings import * 2 | -------------------------------------------------------------------------------- /simpleui_captcha/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dust8/django-simpleui-captcha/HEAD/simpleui_captcha/admin.py -------------------------------------------------------------------------------- /simpleui_captcha/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dust8/django-simpleui-captcha/HEAD/simpleui_captcha/apps.py -------------------------------------------------------------------------------- /simpleui_captcha/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dust8/django-simpleui-captcha/HEAD/simpleui_captcha/forms.py -------------------------------------------------------------------------------- /simpleui_captcha/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /simpleui_captcha/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dust8/django-simpleui-captcha/HEAD/simpleui_captcha/settings.py -------------------------------------------------------------------------------- /simpleui_captcha/static/simpleui_captcha/jquery-3.7.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dust8/django-simpleui-captcha/HEAD/simpleui_captcha/static/simpleui_captcha/jquery-3.7.1.min.js -------------------------------------------------------------------------------- /simpleui_captcha/templates/admin/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dust8/django-simpleui-captcha/HEAD/simpleui_captcha/templates/admin/login.html -------------------------------------------------------------------------------- /simpleui_captcha/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dust8/django-simpleui-captcha/HEAD/simpleui_captcha/urls.py -------------------------------------------------------------------------------- /simpleui_captcha/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dust8/django-simpleui-captcha/HEAD/simpleui_captcha/views.py --------------------------------------------------------------------------------