MMM-Bank – a modern, student-built online banking web application, created by three first-year students to practice full-stack development with Django.
MMM-Bank is designed as a visually engaging and interactive banking interface with the following highlights:
- Animated gradient background: smooth, dynamic, and “alive” visuals.
- Realistic backend simulation: Django-powered backend with user accounts and transactions.
- Responsive & clean design: built with HTML, CSS, and Bootstrap.
- Educational project: perfect for learning web development and backend integration.
- Python 3.x
- Django Framework
- HTML, CSS, Bootstrap
- Clone the repository:
git clone https://github.com/Fev1L/MMM-Bank.git- Navigate to project folder:
cd MMM-Bank- Create and activate virtual environment:
python -m venv .venv
python3 -m venv .venv #if python not workingsource .venv/bin/activate # Linux / Mac
.venv\Scripts\activate #windows- Install dependencies:
pip install -r requirements.txt- Run migrations:
python manage.py migrate
python3 manage.py migrate #if python not working- Start the development server:
python manage.py runserver
python3 manage.py runserver #if python not working