├── .env ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── aes_model.py ├── app.py ├── database └── db.json ├── demo └── python3 │ └── demo.py ├── log └── error.log ├── requirements.txt ├── templates ├── base.html ├── card_info.html ├── login.html ├── static │ ├── My97DatePicker │ │ ├── My97DatePicker.htm │ │ ├── WdatePicker.js │ │ ├── calendar.js │ │ ├── lang │ │ │ ├── en.js │ │ │ ├── zh-cn.js │ │ │ └── zh-tw.js │ │ ├── skin │ │ │ ├── WdatePicker.css │ │ │ ├── datePicker.gif │ │ │ ├── default │ │ │ │ ├── datepicker.css │ │ │ │ └── img.gif │ │ │ ├── ext │ │ │ │ ├── datepicker.css │ │ │ │ ├── dateselect.gif │ │ │ │ ├── glass-bg.gif │ │ │ │ ├── hd-sprite.gif │ │ │ │ ├── img.gif │ │ │ │ ├── left-btn.gif │ │ │ │ ├── left-btn2.gif │ │ │ │ ├── right-btn.gif │ │ │ │ └── right-btn2.gif │ │ │ └── whyGreen │ │ │ │ ├── bg.jpg │ │ │ │ ├── datepicker.css │ │ │ │ └── img.gif │ │ └── 开发包 │ │ │ ├── lang │ │ │ ├── en.js │ │ │ ├── zh-cn.js │ │ │ └── zh-tw.js │ │ │ ├── readme.txt │ │ │ └── skin │ │ │ ├── WdatePicker.css │ │ │ ├── datePicker.gif │ │ │ ├── default │ │ │ ├── datepicker.css │ │ │ └── img.gif │ │ │ └── whyGreen │ │ │ ├── bg.jpg │ │ │ ├── datepicker.css │ │ │ └── img.gif │ ├── Semantic-UI-CSS │ │ ├── .versions │ │ ├── LICENSE │ │ ├── README.md │ │ ├── components │ │ │ ├── accordion.css │ │ │ ├── accordion.js │ │ │ ├── accordion.min.css │ │ │ ├── accordion.min.js │ │ │ ├── ad.css │ │ │ ├── ad.min.css │ │ │ ├── api.js │ │ │ ├── api.min.js │ │ │ ├── breadcrumb.css │ │ │ ├── breadcrumb.min.css │ │ │ ├── button.css │ │ │ ├── button.min.css │ │ │ ├── card.css │ │ │ ├── card.min.css │ │ │ ├── checkbox.css │ │ │ ├── checkbox.js │ │ │ ├── checkbox.min.css │ │ │ ├── checkbox.min.js │ │ │ ├── colorize.js │ │ │ ├── colorize.min.js │ │ │ ├── comment.css │ │ │ ├── comment.min.css │ │ │ ├── container.css │ │ │ ├── container.min.css │ │ │ ├── dimmer.css │ │ │ ├── dimmer.js │ │ │ ├── dimmer.min.css │ │ │ ├── dimmer.min.js │ │ │ ├── divider.css │ │ │ ├── divider.min.css │ │ │ ├── dropdown.css │ │ │ ├── dropdown.js │ │ │ ├── dropdown.min.css │ │ │ ├── dropdown.min.js │ │ │ ├── embed.css │ │ │ ├── embed.js │ │ │ ├── embed.min.css │ │ │ ├── embed.min.js │ │ │ ├── feed.css │ │ │ ├── feed.min.css │ │ │ ├── flag.css │ │ │ ├── flag.min.css │ │ │ ├── form.css │ │ │ ├── form.js │ │ │ ├── form.min.css │ │ │ ├── form.min.js │ │ │ ├── grid.css │ │ │ ├── grid.min.css │ │ │ ├── header.css │ │ │ ├── header.min.css │ │ │ ├── icon.css │ │ │ ├── icon.min.css │ │ │ ├── image.css │ │ │ ├── image.min.css │ │ │ ├── input.css │ │ │ ├── input.min.css │ │ │ ├── item.css │ │ │ ├── item.min.css │ │ │ ├── label.css │ │ │ ├── label.min.css │ │ │ ├── list.css │ │ │ ├── list.min.css │ │ │ ├── loader.css │ │ │ ├── loader.min.css │ │ │ ├── menu.css │ │ │ ├── menu.min.css │ │ │ ├── message.css │ │ │ ├── message.min.css │ │ │ ├── modal.css │ │ │ ├── modal.js │ │ │ ├── modal.min.css │ │ │ ├── modal.min.js │ │ │ ├── nag.css │ │ │ ├── nag.js │ │ │ ├── nag.min.css │ │ │ ├── nag.min.js │ │ │ ├── placeholder.css │ │ │ ├── placeholder.min.css │ │ │ ├── popup.css │ │ │ ├── popup.js │ │ │ ├── popup.min.css │ │ │ ├── popup.min.js │ │ │ ├── progress.css │ │ │ ├── progress.js │ │ │ ├── progress.min.css │ │ │ ├── progress.min.js │ │ │ ├── rail.css │ │ │ ├── rail.min.css │ │ │ ├── rating.css │ │ │ ├── rating.js │ │ │ ├── rating.min.css │ │ │ ├── rating.min.js │ │ │ ├── reset.css │ │ │ ├── reset.min.css │ │ │ ├── reveal.css │ │ │ ├── reveal.min.css │ │ │ ├── search.css │ │ │ ├── search.js │ │ │ ├── search.min.css │ │ │ ├── search.min.js │ │ │ ├── segment.css │ │ │ ├── segment.min.css │ │ │ ├── shape.css │ │ │ ├── shape.js │ │ │ ├── shape.min.css │ │ │ ├── shape.min.js │ │ │ ├── sidebar.css │ │ │ ├── sidebar.js │ │ │ ├── sidebar.min.css │ │ │ ├── sidebar.min.js │ │ │ ├── site.css │ │ │ ├── site.js │ │ │ ├── site.min.css │ │ │ ├── site.min.js │ │ │ ├── state.js │ │ │ ├── state.min.js │ │ │ ├── statistic.css │ │ │ ├── statistic.min.css │ │ │ ├── step.css │ │ │ ├── step.min.css │ │ │ ├── sticky.css │ │ │ ├── sticky.js │ │ │ ├── sticky.min.css │ │ │ ├── sticky.min.js │ │ │ ├── tab.css │ │ │ ├── tab.js │ │ │ ├── tab.min.css │ │ │ ├── tab.min.js │ │ │ ├── table.css │ │ │ ├── table.min.css │ │ │ ├── transition.css │ │ │ ├── transition.js │ │ │ ├── transition.min.css │ │ │ ├── transition.min.js │ │ │ ├── video.css │ │ │ ├── video.js │ │ │ ├── video.min.css │ │ │ ├── video.min.js │ │ │ ├── visibility.js │ │ │ ├── visibility.min.js │ │ │ ├── visit.js │ │ │ └── visit.min.js │ │ ├── package.js │ │ ├── package.json │ │ ├── semantic.min.css │ │ ├── semantic.min.js │ │ └── themes │ │ │ └── default │ │ │ └── assets │ │ │ ├── fonts │ │ │ ├── brand-icons.eot │ │ │ ├── brand-icons.svg │ │ │ ├── brand-icons.ttf │ │ │ ├── brand-icons.woff │ │ │ ├── brand-icons.woff2 │ │ │ ├── icons.eot │ │ │ ├── icons.otf │ │ │ ├── icons.svg │ │ │ ├── icons.ttf │ │ │ ├── icons.woff │ │ │ ├── icons.woff2 │ │ │ ├── outline-icons.eot │ │ │ ├── outline-icons.svg │ │ │ ├── outline-icons.ttf │ │ │ ├── outline-icons.woff │ │ │ └── outline-icons.woff2 │ │ │ └── images │ │ │ └── flags.png │ ├── clipboard.min.js │ ├── images │ │ ├── qrcode-302.png │ │ └── vip.png │ └── jquery-3.6.1.min.js └── user_info.html └── verification_model.py /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/README.md -------------------------------------------------------------------------------- /aes_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/aes_model.py -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/app.py -------------------------------------------------------------------------------- /database/db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/database/db.json -------------------------------------------------------------------------------- /demo/python3/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/demo/python3/demo.py -------------------------------------------------------------------------------- /log/error.log: -------------------------------------------------------------------------------- 1 | 2022-09-01 23:10:12 充值卡使用状态修改失败 223456789111111 20220901AGYME DKOBDTJN 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/requirements.txt -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/card_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/card_info.html -------------------------------------------------------------------------------- /templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/login.html -------------------------------------------------------------------------------- /templates/static/My97DatePicker/My97DatePicker.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/My97DatePicker/My97DatePicker.htm -------------------------------------------------------------------------------- /templates/static/My97DatePicker/WdatePicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/My97DatePicker/WdatePicker.js -------------------------------------------------------------------------------- /templates/static/My97DatePicker/calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/My97DatePicker/calendar.js -------------------------------------------------------------------------------- /templates/static/My97DatePicker/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/My97DatePicker/lang/en.js -------------------------------------------------------------------------------- /templates/static/My97DatePicker/lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/My97DatePicker/lang/zh-cn.js -------------------------------------------------------------------------------- /templates/static/My97DatePicker/lang/zh-tw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/My97DatePicker/lang/zh-tw.js -------------------------------------------------------------------------------- /templates/static/My97DatePicker/skin/WdatePicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/My97DatePicker/skin/WdatePicker.css -------------------------------------------------------------------------------- /templates/static/My97DatePicker/skin/datePicker.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/My97DatePicker/skin/datePicker.gif -------------------------------------------------------------------------------- /templates/static/My97DatePicker/skin/default/datepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/My97DatePicker/skin/default/datepicker.css -------------------------------------------------------------------------------- /templates/static/My97DatePicker/skin/default/img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/My97DatePicker/skin/default/img.gif -------------------------------------------------------------------------------- /templates/static/My97DatePicker/skin/ext/datepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/My97DatePicker/skin/ext/datepicker.css -------------------------------------------------------------------------------- /templates/static/My97DatePicker/skin/ext/dateselect.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/My97DatePicker/skin/ext/dateselect.gif -------------------------------------------------------------------------------- /templates/static/My97DatePicker/skin/ext/glass-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/My97DatePicker/skin/ext/glass-bg.gif -------------------------------------------------------------------------------- /templates/static/My97DatePicker/skin/ext/hd-sprite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/My97DatePicker/skin/ext/hd-sprite.gif -------------------------------------------------------------------------------- /templates/static/My97DatePicker/skin/ext/img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/My97DatePicker/skin/ext/img.gif -------------------------------------------------------------------------------- /templates/static/My97DatePicker/skin/ext/left-btn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/My97DatePicker/skin/ext/left-btn.gif -------------------------------------------------------------------------------- /templates/static/My97DatePicker/skin/ext/left-btn2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/My97DatePicker/skin/ext/left-btn2.gif -------------------------------------------------------------------------------- /templates/static/My97DatePicker/skin/ext/right-btn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/My97DatePicker/skin/ext/right-btn.gif -------------------------------------------------------------------------------- /templates/static/My97DatePicker/skin/ext/right-btn2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/My97DatePicker/skin/ext/right-btn2.gif -------------------------------------------------------------------------------- /templates/static/My97DatePicker/skin/whyGreen/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/My97DatePicker/skin/whyGreen/bg.jpg -------------------------------------------------------------------------------- /templates/static/My97DatePicker/skin/whyGreen/datepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/My97DatePicker/skin/whyGreen/datepicker.css -------------------------------------------------------------------------------- /templates/static/My97DatePicker/skin/whyGreen/img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/My97DatePicker/skin/whyGreen/img.gif -------------------------------------------------------------------------------- /templates/static/My97DatePicker/开发包/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/My97DatePicker/开发包/lang/en.js -------------------------------------------------------------------------------- /templates/static/My97DatePicker/开发包/lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/My97DatePicker/开发包/lang/zh-cn.js -------------------------------------------------------------------------------- /templates/static/My97DatePicker/开发包/lang/zh-tw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/My97DatePicker/开发包/lang/zh-tw.js -------------------------------------------------------------------------------- /templates/static/My97DatePicker/开发包/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/My97DatePicker/开发包/readme.txt -------------------------------------------------------------------------------- /templates/static/My97DatePicker/开发包/skin/WdatePicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/My97DatePicker/开发包/skin/WdatePicker.css -------------------------------------------------------------------------------- /templates/static/My97DatePicker/开发包/skin/datePicker.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/My97DatePicker/开发包/skin/datePicker.gif -------------------------------------------------------------------------------- /templates/static/My97DatePicker/开发包/skin/default/datepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/My97DatePicker/开发包/skin/default/datepicker.css -------------------------------------------------------------------------------- /templates/static/My97DatePicker/开发包/skin/default/img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/My97DatePicker/开发包/skin/default/img.gif -------------------------------------------------------------------------------- /templates/static/My97DatePicker/开发包/skin/whyGreen/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/My97DatePicker/开发包/skin/whyGreen/bg.jpg -------------------------------------------------------------------------------- /templates/static/My97DatePicker/开发包/skin/whyGreen/datepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/My97DatePicker/开发包/skin/whyGreen/datepicker.css -------------------------------------------------------------------------------- /templates/static/My97DatePicker/开发包/skin/whyGreen/img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/My97DatePicker/开发包/skin/whyGreen/img.gif -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/.versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/.versions -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/LICENSE -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/README.md -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/accordion.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/accordion.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/accordion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/accordion.js -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/accordion.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/accordion.min.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/accordion.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/accordion.min.js -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/ad.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/ad.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/ad.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/ad.min.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/api.js -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/api.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/api.min.js -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/breadcrumb.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/breadcrumb.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/breadcrumb.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/breadcrumb.min.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/button.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/button.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/button.min.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/card.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/card.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/card.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/card.min.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/checkbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/checkbox.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/checkbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/checkbox.js -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/checkbox.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/checkbox.min.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/checkbox.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/checkbox.min.js -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/colorize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/colorize.js -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/colorize.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/colorize.min.js -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/comment.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/comment.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/comment.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/comment.min.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/container.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/container.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/container.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/container.min.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/dimmer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/dimmer.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/dimmer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/dimmer.js -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/dimmer.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/dimmer.min.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/dimmer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/dimmer.min.js -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/divider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/divider.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/divider.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/divider.min.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/dropdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/dropdown.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/dropdown.js -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/dropdown.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/dropdown.min.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/dropdown.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/dropdown.min.js -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/embed.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/embed.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/embed.js -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/embed.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/embed.min.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/embed.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/embed.min.js -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/feed.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/feed.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/feed.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/feed.min.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/flag.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/flag.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/flag.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/flag.min.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/form.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/form.js -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/form.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/form.min.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/form.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/form.min.js -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/grid.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/grid.min.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/header.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/header.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/header.min.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/icon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/icon.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/icon.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/icon.min.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/image.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/image.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/image.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/image.min.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/input.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/input.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/input.min.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/item.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/item.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/item.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/item.min.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/label.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/label.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/label.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/label.min.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/list.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/list.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/list.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/list.min.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/loader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/loader.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/loader.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/loader.min.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/menu.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/menu.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/menu.min.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/message.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/message.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/message.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/message.min.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/modal.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/modal.js -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/modal.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/modal.min.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/modal.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/modal.min.js -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/nag.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/nag.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/nag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/nag.js -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/nag.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/nag.min.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/nag.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/nag.min.js -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/placeholder.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/placeholder.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/placeholder.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/placeholder.min.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/popup.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/popup.js -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/popup.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/popup.min.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/popup.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/popup.min.js -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/progress.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/progress.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/progress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/progress.js -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/progress.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/progress.min.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/progress.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/progress.min.js -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/rail.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/rail.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/rail.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/rail.min.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/rating.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/rating.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/rating.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/rating.js -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/rating.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/rating.min.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/rating.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/rating.min.js -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/reset.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/reset.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/reset.min.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/reveal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/reveal.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/reveal.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/reveal.min.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/search.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/search.js -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/search.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/search.min.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/search.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/search.min.js -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/segment.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/segment.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/segment.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/segment.min.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/shape.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/shape.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/shape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/shape.js -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/shape.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/shape.min.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/shape.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/shape.min.js -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/sidebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/sidebar.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/sidebar.js -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/sidebar.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/sidebar.min.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/sidebar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/sidebar.min.js -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/site.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/site.js -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/site.min.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/site.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/site.min.js -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/state.js -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/state.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/state.min.js -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/statistic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/statistic.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/statistic.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/statistic.min.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/step.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/step.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/step.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/step.min.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/sticky.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/sticky.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/sticky.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/sticky.js -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/sticky.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/sticky.min.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/sticky.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/sticky.min.js -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/tab.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/tab.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/tab.js -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/tab.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/tab.min.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/tab.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/tab.min.js -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/table.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/table.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/table.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/table.min.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/transition.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/transition.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/transition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/transition.js -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/transition.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/transition.min.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/transition.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/transition.min.js -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/video.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/video.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/video.js -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/video.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/video.min.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/video.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/video.min.js -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/visibility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/visibility.js -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/visibility.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/visibility.min.js -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/visit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/visit.js -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/components/visit.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/components/visit.min.js -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/package.js -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/package.json -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/semantic.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/semantic.min.css -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/semantic.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/semantic.min.js -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/themes/default/assets/fonts/brand-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/themes/default/assets/fonts/brand-icons.eot -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/themes/default/assets/fonts/brand-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/themes/default/assets/fonts/brand-icons.svg -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/themes/default/assets/fonts/brand-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/themes/default/assets/fonts/brand-icons.ttf -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/themes/default/assets/fonts/brand-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/themes/default/assets/fonts/brand-icons.woff -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/themes/default/assets/fonts/brand-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/themes/default/assets/fonts/brand-icons.woff2 -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/themes/default/assets/fonts/icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/themes/default/assets/fonts/icons.eot -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/themes/default/assets/fonts/icons.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/themes/default/assets/fonts/icons.otf -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/themes/default/assets/fonts/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/themes/default/assets/fonts/icons.svg -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/themes/default/assets/fonts/icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/themes/default/assets/fonts/icons.ttf -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/themes/default/assets/fonts/icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/themes/default/assets/fonts/icons.woff -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/themes/default/assets/fonts/icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/themes/default/assets/fonts/icons.woff2 -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/themes/default/assets/fonts/outline-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/themes/default/assets/fonts/outline-icons.eot -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/themes/default/assets/fonts/outline-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/themes/default/assets/fonts/outline-icons.svg -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/themes/default/assets/fonts/outline-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/themes/default/assets/fonts/outline-icons.ttf -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/themes/default/assets/fonts/outline-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/themes/default/assets/fonts/outline-icons.woff -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/themes/default/assets/fonts/outline-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/themes/default/assets/fonts/outline-icons.woff2 -------------------------------------------------------------------------------- /templates/static/Semantic-UI-CSS/themes/default/assets/images/flags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/Semantic-UI-CSS/themes/default/assets/images/flags.png -------------------------------------------------------------------------------- /templates/static/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/clipboard.min.js -------------------------------------------------------------------------------- /templates/static/images/qrcode-302.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/images/qrcode-302.png -------------------------------------------------------------------------------- /templates/static/images/vip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/images/vip.png -------------------------------------------------------------------------------- /templates/static/jquery-3.6.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/static/jquery-3.6.1.min.js -------------------------------------------------------------------------------- /templates/user_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/templates/user_info.html -------------------------------------------------------------------------------- /verification_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayouzl/python_web_auth/HEAD/verification_model.py --------------------------------------------------------------------------------