Skip to content

jamesrascal/Cluade_desktop_demo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This app is a demo app generated using Calude Code CLI as a demo for a video

Flask Form Application

A simple Flask web application with user authentication, form submission, and admin panel.

Features

  • User registration and login
  • Protected form submission (only for authenticated users)
  • Admin panel to view all submitted forms
  • Bootstrap styling for responsive design

Setup Instructions

  1. Clone the repository

  2. Create a virtual environment and activate it

python -m venv venv
source venv/bin/activate  # On Windows, use: venv\Scripts\activate
  1. Install the required packages
pip install -r requirements.txt
  1. Run the application
python run.py
  1. Access the application at http://127.0.0.1:5000

Default Admin User

Username: admin
Email: [email protected]
Password: admin123

Project Structure

app/
  ├── static/
  │   └── main.css
  ├── templates/
  │   ├── admin.html
  │   ├── home.html
  │   ├── layout.html
  │   ├── login.html
  │   ├── register.html
  │   └── submit.html
  ├── forms/
  │   ├── auth.py
  │   └── submission.py
  ├── models/
  │   ├── user.py
  │   └── submission.py
  ├── routes/
  │   ├── admin.py
  │   ├── auth.py
  │   ├── forms.py
  │   └── main.py
  └── __init__.py
run.py
requirements.txt
README.md

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published