Fix typos and generic text issues

This commit is contained in:
Timothée Jaussoin 2024-02-28 13:58:07 +00:00
parent 7ce7c85184
commit 1df1ca4ddf
4 changed files with 9 additions and 5 deletions

View file

@ -52,6 +52,7 @@ INTERCOM_FEATURES=false # Toggle to enable/disable the intercom related features
TERMS_OF_USE_URL= # A URL pointing to the Terms of Use
PRIVACY_POLICY_URL= # A URL pointing to the Privacy Policy
APP_PROJECT_URL= # A URL pointing to the project information page
LOG_CHANNEL=stack

View file

@ -13,9 +13,10 @@ return [
|
*/
'name' => env('APP_NAME', 'Laravel'),
'name' => env('APP_NAME', 'Account Manager'),
'sip_domain' => env('APP_SIP_DOMAIN', 'sip.domain.com'),
'project_url' => env('APP_PROJECT_URL', ''),
'terms_of_use_url' => env('TERMS_OF_USE_URL', ''),
'privacy_policy_url' => env('PRIVACY_POLICY_URL', ''),

View file

@ -6,7 +6,9 @@
<h2>About</h2>
<hr />
<p><a href="https://linphone.org/">https://linphone.org</a></p>
@if (!empty(config('app.project_url')))
<p><a href="{{ config('app.project_url') }}">{{ config('app.project_url') }}</a></p>
@endif
<p><a href="{{ config('app.terms_of_use_url') }}">Terms and Conditions</a> and <a
href="{{ config('app.privacy_policy_url') }}">Privacy policy</a></p>

View file

@ -8,7 +8,7 @@
<input name="account_creation_request_token" type="hidden" value="{{ $account_creation_request_token->token }}">
@include('parts.captcha')
<input class="btn btn-primary" type="submit" value="I\'m not a robot">
<input class="btn btn-primary" type="submit" value="I'm not a robot">
</form>
</div>
</div>