This commit is contained in:
Cyberes 2020-10-24 19:48:59 -06:00
parent 20946756dd
commit 7291d036b3
1 changed files with 19 additions and 3 deletions

View File

@ -1,8 +1,18 @@
A better version of the classic contact form extension.
Config:
``php
# Install
1. ```
git clone https://git.dp15.us/dpanzer/ProtectedContactPage.git
```
2. Make sure you have set `$wgPasswordSender` and have set up SMTP.
3. Add to the bottom of `LocalSettings.php`:
```php
$wgReCaptchaSiteKey = 'you public key';
$wgReCaptchaSecretKey = 'your secret key';
@ -24,4 +34,10 @@ $wgContactConfig['default'] = array(
'RLStyleModules' => array(),
'MustBeLoggedIn' => false,
);
``
```
# Usage
Go to `Special:Contact` to access the contact form.