-
- Downloads
Basic site and authentication
Showing
- .gitignore 7 additions, 0 deletions.gitignore
- .vscode/settings.json 8 additions, 0 deletions.vscode/settings.json
- bam/__init__.py 15 additions, 0 deletionsbam/__init__.py
- bam/forms.py 26 additions, 0 deletionsbam/forms.py
- bam/models.py 16 additions, 0 deletionsbam/models.py
- bam/routes.py 53 additions, 0 deletionsbam/routes.py
- bam/static/home.css 38 additions, 0 deletionsbam/static/home.css
- bam/static/outform.css 109 additions, 0 deletionsbam/static/outform.css
- bam/static/outlayout.css 100 additions, 0 deletionsbam/static/outlayout.css
- bam/templates/dash.html 11 additions, 0 deletionsbam/templates/dash.html
- bam/templates/home.html 12 additions, 0 deletionsbam/templates/home.html
- bam/templates/login.html 39 additions, 0 deletionsbam/templates/login.html
- bam/templates/outlayout.html 34 additions, 0 deletionsbam/templates/outlayout.html
- bam/templates/register.html 22 additions, 0 deletionsbam/templates/register.html
- create_db.py 3 additions, 0 deletionscreate_db.py
- requirements.txt 27 additions, 0 deletionsrequirements.txt
- run.py 4 additions, 0 deletionsrun.py
.gitignore
0 → 100644
.vscode/settings.json
0 → 100644
bam/__init__.py
0 → 100644
bam/forms.py
0 → 100644
bam/models.py
0 → 100644
bam/routes.py
0 → 100644
bam/static/home.css
0 → 100644
bam/static/outform.css
0 → 100644
bam/static/outlayout.css
0 → 100644
bam/templates/dash.html
0 → 100644
bam/templates/home.html
0 → 100644
bam/templates/login.html
0 → 100644
bam/templates/outlayout.html
0 → 100644
bam/templates/register.html
0 → 100644
create_db.py
0 → 100644
requirements.txt
0 → 100644
appdirs==1.4.4 | |||
bcrypt==3.2.0 | |||
black==20.8b1 | |||
cffi==1.14.4 | |||
click==7.1.2 | |||
dnspython==2.0.0 | |||
email-validator==1.1.2 | |||
Flask==1.1.2 | |||
Flask-Bcrypt==0.7.1 | |||
Flask-Login==0.5.0 | |||
Flask-SQLAlchemy==2.4.4 | |||
Flask-WTF==0.14.3 | |||
idna==2.10 | |||
itsdangerous==1.1.0 | |||
Jinja2==2.11.2 | |||
MarkupSafe==1.1.1 | |||
mypy-extensions==0.4.3 | |||
pathspec==0.8.1 | |||
pycparser==2.20 | |||
regex==2020.11.13 | |||
six==1.15.0 | |||
SQLAlchemy==1.3.22 | |||
toml==0.10.2 | |||
typed-ast==1.4.1 | |||
typing-extensions==3.7.4.3 | |||
Werkzeug==1.0.1 | |||
WTForms==2.3.3 |
run.py
0 → 100644
Please register or sign in to comment