mailinabox_registration_page/README.md

25 lines
812 B
Markdown
Raw Permalink Normal View History

2022-05-25 11:28:15 +00:00
# Main-In-A-Box registration page
2022-05-25 11:29:55 +00:00
Just a simple registraiton page with a hcaptcha, using Mail-In-A-Box's in-build api for creating email.
2022-05-25 11:47:23 +00:00
## Installation:
1. Clone the files into your website directory (Your website directory is `/home/user-data/www/default`)
2022-05-25 11:56:34 +00:00
2. Edit line numbers 195, 200 (pattern), 214 (data-sitekey) in register.html
3. Edit line 40 (api) in action_page.php
4. Create a file .env in `/home/user-data/www` and save your admin accout creds and captcha secret key in it, make sure format is like this:
2022-05-25 11:47:23 +00:00
```
PWDD="PASSWORD_HERE"
EML="EMAILHERE@domain.com"
SEC="hCaptcha secret key here"
```
2022-05-25 11:56:34 +00:00
5. Make sure you have composer installed, run `composer install` in website directory.
2022-05-25 11:51:43 +00:00
2022-05-25 11:56:34 +00:00
Done, that's it.
2022-05-25 11:51:43 +00:00
2022-05-25 11:56:34 +00:00
If its not working, make sure you enabled php.
Feel free to submit issues and pull requests.