Add abuse contact and parent website
This commit is contained in:
parent
0b44d10f06
commit
e1b5f41a66
|
@ -1,5 +1,8 @@
|
||||||
APP_NAME=pastethingy
|
APP_NAME=pastethingy
|
||||||
APP_REPO=https://git.fuwafuwa.moe/lesderid/pastethingy
|
APP_REPO=https://git.fuwafuwa.moe/lesderid/pastethingy
|
||||||
|
APP_ABUSE_CONTACT=abuse@example.com
|
||||||
|
APP_PARENT_NAME=example.com
|
||||||
|
APP_PARENT_URL=https://example.com
|
||||||
|
|
||||||
APP_DEBUG=true
|
APP_DEBUG=true
|
||||||
APP_URL=http://pastethingy.app
|
APP_URL=http://pastethingy.app
|
||||||
|
|
|
@ -24,6 +24,40 @@ return [
|
||||||
|
|
||||||
'repo' => env('APP_REPO', 'https://git.fuwafuwa.moe/lesderid/pastethingy'),
|
'repo' => env('APP_REPO', 'https://git.fuwafuwa.moe/lesderid/pastethingy'),
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Abuse contact
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| E-mail address for abuse reports.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'abusecontact' => env('APP_ABUSE_CONTACT'),
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Parent name
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Name of the parent website.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'parentname' => env('APP_PARENT_NAME'),
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Parent URL
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| URL of the parent website.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'parenturl' => env('APP_PARENT_URL'),
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
| Application Debug Mode
|
| Application Debug Mode
|
||||||
|
|
|
@ -44,7 +44,7 @@
|
||||||
section, form {
|
section, form {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
}
|
}
|
||||||
|
|
||||||
input, select, textarea, div, label {
|
input, select, textarea, div, label {
|
||||||
|
@ -191,6 +191,8 @@
|
||||||
<a href="/?js=1">Tab key support (requires JS)</a>
|
<a href="/?js=1">Tab key support (requires JS)</a>
|
||||||
@endif
|
@endif
|
||||||
<p>· <a href="{{ config('app.repo') }}">Source code</a></p>
|
<p>· <a href="{{ config('app.repo') }}">Source code</a></p>
|
||||||
|
<p>· <a href="mailto:{{ config('app.abusecontact') }}">Report abuse</a></p>
|
||||||
|
<p>· <a href="{{ config('app.parenturl') }}">{{ config('app.parentname') }}</a></p>
|
||||||
<p>· Dates and times are UTC.</p>
|
<p>· Dates and times are UTC.</p>
|
||||||
</div>
|
</div>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
Loading…
Reference in New Issue