This Django project implements a simple registration form.
Make sure you have the following installed before proceeding:
- Python (3.6 or higher)
- Django
**Clone the Repository**
git clone https://github.com/GuitarGeekCoder/registration.git
cd registration
Choose your preferred virtual environment tool (venv, virtualenv, or conda).
python -m venv venv
venv\Scripts\activate
source venv/bin/activate
pip install -r requirements.txt
python manage.py migrate
If you want to access the Django admin panel:
python manage.py createsuperuser
python manage.py runserver
Visit http://localhost:8000/ in your web browser to view the registration form.
Open your web browser and navigate to http://localhost:8000/.
Fill out the registration form.
Feel free to contribute by opening issues or pull requests.