Improved login funtion by creating temporary HTML pages and fixing bugs in login

This commit is contained in:
white
2025-01-17 16:58:23 +00:00
parent a7b62ff972
commit e89e5f0fef
13 changed files with 84 additions and 39 deletions

Binary file not shown.

Binary file not shown.

22
database/database.py Normal file
View File

@@ -0,0 +1,22 @@
import sqlite3
import os
class Database:
def __init__(self) -> None:
self._db = os.path.join(os.path.abspath(os.path.dirname(__file__)), "app.db")
def create_connection(self) -> sqlite3.Cursor:
conn = sqlite3.connect(self._db)
conn.row_factory = sqlite3.Row
self._conn = conn
cursor = conn.cursor()
return cursor
def commit_data(self):
try:
self._conn.commit()
except Exception as e:
print(e)
def close_connection(self) -> None:
self._conn.close()

View File

@@ -5,10 +5,13 @@ CREATE TABLE users
password VARCHAR(256) NOT NULL,
email VARCHAR(64) NOT NULL,
num_followers INTEGER NOT NULL,
isPartenered BOOLEAN NOT NULL DEFAULT 0
bio TEXT,
isPartenered BOOLEAN NOT NULL DEFAULT 0,
bio TEXT
);
SELECT * FROM users;
DROP TABLE IF EXISTS streams;
CREATE TABLE streams
(