added terms pages and a footer

This commit is contained in:
2018-07-10 09:20:13 +02:00
parent aaf2a97627
commit 63e68ae0fe
17 changed files with 2906 additions and 36623 deletions
+23 -11
View File
@@ -61,20 +61,32 @@
</div>
</div>
</form>
</div>
</div>
<div class="card-body">
<a type="submit" href="{{route('oauth-github-authorize')}}" class="btn btn-dark">
{{ __('Login with GitHub') }}
</a>
<div class="card-footer bg-white">
<div class="form-group row mb-0">
<span class="col-md-4 col-form-label text-md-right">{{ __('Log in with') }}</span>
<a type="submit" href="{{route('oauth-google-authorize')}}" class="btn btn-dark">
{{ __('Login with Google') }}
</a>
<div class="col-md-6">
@set('services.oauth_providers.github.client_id')
<a type="submit" href="{{route('oauth-github-authorize')}}" class="btn btn-dark">
{{ __('GitHub') }}
</a>
@endset
<a type="submit" href="{{route('oauth-facebook-authorize')}}" class="btn btn-dark">
{{ __('Login with Facebook') }}
</a>
@set('services.oauth_providers.google.client_id')
<a type="submit" href="{{route('oauth-google-authorize')}}" class="btn btn-dark">
{{ __('Google') }}
</a>
@endset
@set('services.oauth_providers.facebook.client_id')
<a type="submit" href="{{route('oauth-facebook-authorize')}}" class="btn btn-dark">
{{ __('Facebook') }}
</a>
@endset
</div>
</div>
</div>
</div>
</div>
+8
View File
@@ -70,6 +70,14 @@
</div>
</form>
</div>
<div class="card-footer text-muted">
You can also log in with
<a href="{{route('oauth-google-authorize')}}">Google</a>,
<a href="{{route('oauth-github-authorize')}}">GitHub</a>,
or <a href="{{route('oauth-facebook-authorize')}}">Facebook</a>,
without the need to register.
</div>
</div>
</div>
</div>