feat: add links to legal docs, force users to accept legal docs

This commit is contained in:
2022-04-04 11:03:09 +01:00
parent 2c63c2265d
commit e8cdc7c710
10 changed files with 25 additions and 28 deletions

View File

@@ -31,9 +31,9 @@
</form>
<a href="{{ route('login') }}">{{__('Back to login')}}</a>
<nav class="login-card-footer-nav">
<a href="#!">{{__('Terms of Service')}}</a>
<a href="#!">{{__('Privacy Policy')}}</a>
<a href="#!">{{__('Community Guidelines')}}</a>
<a href="{{ config('app.terms_url') }}">{{__('Terms of Service')}}</a>
<a href="{{ config('app.privacy_url') }}">{{__('Privacy Policy')}}</a>
<a href="{{ config('app.guidelines_url') }}">{{__('Community Guidelines')}}</a>
</nav>
</div>