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 TERMS_OF_USE_URL= # A URL pointing to the Terms of Use
PRIVACY_POLICY_URL= # A URL pointing to the Privacy Policy PRIVACY_POLICY_URL= # A URL pointing to the Privacy Policy
APP_PROJECT_URL= # A URL pointing to the project information page
LOG_CHANNEL=stack LOG_CHANNEL=stack
@ -107,4 +108,4 @@ OVH_APP_SENDER=
# Google reCaptcha v2 parameters # Google reCaptcha v2 parameters
NOCAPTCHA_SECRET=secret-key NOCAPTCHA_SECRET=secret-key
NOCAPTCHA_SITEKEY=site-key NOCAPTCHA_SITEKEY=site-key

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'), 'sip_domain' => env('APP_SIP_DOMAIN', 'sip.domain.com'),
'project_url' => env('APP_PROJECT_URL', ''),
'terms_of_use_url' => env('TERMS_OF_USE_URL', ''), 'terms_of_use_url' => env('TERMS_OF_USE_URL', ''),
'privacy_policy_url' => env('PRIVACY_POLICY_URL', ''), 'privacy_policy_url' => env('PRIVACY_POLICY_URL', ''),

View file

@ -6,7 +6,9 @@
<h2>About</h2> <h2>About</h2>
<hr /> <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 <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> href="{{ config('app.privacy_policy_url') }}">Privacy policy</a></p>

View file

@ -8,8 +8,8 @@
<input name="account_creation_request_token" type="hidden" value="{{ $account_creation_request_token->token }}"> <input name="account_creation_request_token" type="hidden" value="{{ $account_creation_request_token->token }}">
@include('parts.captcha') @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> </form>
</div> </div>
</div> </div>
@endsection @endsection