mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-01-17 10:08:05 +00:00
Fix typos and generic text issues
This commit is contained in:
parent
7ce7c85184
commit
1df1ca4ddf
4 changed files with 9 additions and 5 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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', ''),
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue