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

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
(