This is a simple PHP-based Event Registration application that allows users to register for an event by providing their Telegram name and username. Upon submission, the form sends an SMS notification to a specified phone number using the Twilio API.
To deploy this application to both Render and Heroku, follow these steps:
Before starting, make sure you have the following installed:
- Docker (for local image building and testing)
- Git (for version control and deployment)
git clone https://github.com/boruasa/Registration-Website
cd your-repoOpen the index.php file and replace the following variables with your Twilio credentials
$twilioAccountSid = 'YOUR_TWILIO_ACCOUNT_SID';
$twilioAuthToken = 'YOUR_TWILIO_AUTH_TOKEN';
$twilioPhoneNumber = 'YOUR_TWILIO_PHONE_NUMBER';
$yourPhoneNumber = 'YOUR_PHONE_NUMBER';


