Skip to content

A simple account register, login and profile info system

Notifications You must be signed in to change notification settings

PawelGK/flask-account-system

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Flask Account System

A simple Flask web application that allows users to:

  • Sign up
  • Log in
  • View their profile
  • See their account creation date
  • Log out

Requirements

  • Python 3
  • MySQL
  • pip packages:

Database Setup

  1. Open MySQL and create a database:
CREATE DATABASE minidb;
USE minidb;


CREATE TABLE accounts (
    id INT AUTO_INCREMENT PRIMARY KEY,
    username VARCHAR(100) NOT NULL UNIQUE,
    password VARCHAR(255) NOT NULL,
    created_at DATETIME
);

About

A simple account register, login and profile info system

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published