2018-04-16 00:00:49 +00:00
|
|
|
@extends('layouts.app')
|
|
|
|
|
|
|
|
@section('content')
|
2018-05-30 02:47:11 +00:00
|
|
|
<div class="container mt-4">
|
2018-04-16 00:00:49 +00:00
|
|
|
<div class="row justify-content-center">
|
2018-05-30 02:47:11 +00:00
|
|
|
<div class="col-lg-5">
|
2020-12-13 04:04:59 +00:00
|
|
|
<div class="">
|
2021-11-11 05:12:46 +00:00
|
|
|
<div class="card-header bg-transparent p-3 text-center font-weight-bold h3">{{ __('Login') }}</div>
|
2018-04-16 00:00:49 +00:00
|
|
|
|
|
|
|
<div class="card-body">
|
2021-11-11 05:09:06 +00:00
|
|
|
<form method="POST" action="{{ route('login') }}">
|
2018-04-16 00:00:49 +00:00
|
|
|
@csrf
|
|
|
|
|
|
|
|
<div class="form-group row">
|
|
|
|
|
2018-05-30 02:47:11 +00:00
|
|
|
<div class="col-md-12">
|
|
|
|
<input id="email" type="email" class="form-control{{ $errors->has('email') ? ' is-invalid' : '' }}" name="email" value="{{ old('email') }}" placeholder="{{__('Email')}}" required autofocus>
|
2018-04-16 00:00:49 +00:00
|
|
|
|
|
|
|
@if ($errors->has('email'))
|
|
|
|
<span class="invalid-feedback">
|
|
|
|
<strong>{{ $errors->first('email') }}</strong>
|
|
|
|
</span>
|
|
|
|
@endif
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group row">
|
|
|
|
|
2018-05-30 02:47:11 +00:00
|
|
|
<div class="col-md-12">
|
|
|
|
<input id="password" type="password" class="form-control{{ $errors->has('password') ? ' is-invalid' : '' }}" name="password" placeholder="{{__('Password')}}" required>
|
2018-04-16 00:00:49 +00:00
|
|
|
|
|
|
|
@if ($errors->has('password'))
|
|
|
|
<span class="invalid-feedback">
|
|
|
|
<strong>{{ $errors->first('password') }}</strong>
|
|
|
|
</span>
|
|
|
|
@endif
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group row">
|
2018-05-30 02:47:11 +00:00
|
|
|
<div class="col-md-12">
|
2018-04-16 00:00:49 +00:00
|
|
|
<div class="checkbox">
|
|
|
|
<label>
|
2023-07-17 04:54:02 +00:00
|
|
|
<input type="checkbox" name="remember" {{ old('remember') ? 'checked' : '' }}>
|
2021-11-11 05:09:06 +00:00
|
|
|
<span class="font-weight-bold ml-1 text-muted">
|
2019-06-29 20:45:00 +00:00
|
|
|
{{ __('Remember Me') }}
|
|
|
|
</span>
|
2018-04-16 00:00:49 +00:00
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2023-05-23 11:08:34 +00:00
|
|
|
@if(
|
|
|
|
config('captcha.enabled') ||
|
|
|
|
config('captcha.active.login') ||
|
|
|
|
(
|
|
|
|
config('captcha.triggers.login.enabled') &&
|
|
|
|
request()->session()->has('login_attempts') &&
|
|
|
|
request()->session()->get('login_attempts') >= config('captcha.triggers.login.attempts')
|
|
|
|
)
|
|
|
|
)
|
|
|
|
<div class="d-flex justify-content-center mb-3">
|
|
|
|
{!! Captcha::display() !!}
|
|
|
|
</div>
|
2020-12-13 04:04:59 +00:00
|
|
|
@endif
|
|
|
|
|
2023-07-17 04:54:02 +00:00
|
|
|
<div class="form-group row mb-4">
|
2018-05-30 02:47:11 +00:00
|
|
|
<div class="col-md-12">
|
2021-11-11 05:09:06 +00:00
|
|
|
<button type="submit" class="btn btn-primary btn-block btn-lg font-weight-bold">
|
2018-04-16 00:00:49 +00:00
|
|
|
{{ __('Login') }}
|
|
|
|
</button>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-07-17 04:54:02 +00:00
|
|
|
|
|
|
|
</form>
|
|
|
|
@if(config_cache('pixelfed.open_registration') && config('remote-auth.mastodon.enabled'))
|
|
|
|
<hr>
|
|
|
|
<form method="POST" action="/auth/raw/mastodon/start">
|
|
|
|
@csrf
|
|
|
|
<div class="form-group row mb-0">
|
|
|
|
<div class="col-md-12">
|
|
|
|
<button type="submit" class="btn btn-primary btn-sm btn-block rounded-pill font-weight-bold" style="background: linear-gradient(#6364FF, #563ACC);">
|
|
|
|
Sign-in with Mastodon
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-04-16 00:00:49 +00:00
|
|
|
</form>
|
2023-07-17 04:54:02 +00:00
|
|
|
@endif
|
2019-06-29 20:45:00 +00:00
|
|
|
|
|
|
|
<hr>
|
|
|
|
|
2021-11-11 05:09:06 +00:00
|
|
|
<p class="text-center font-weight-bold">
|
2022-10-23 13:31:10 +00:00
|
|
|
@if(config_cache('pixelfed.open_registration'))
|
|
|
|
<a href="/register">Register</a>
|
|
|
|
<span class="px-1">·</span>
|
|
|
|
@endif
|
2019-06-29 20:45:00 +00:00
|
|
|
<a href="{{ route('password.request') }}">
|
|
|
|
{{ __('Forgot Password') }}
|
|
|
|
</a>
|
|
|
|
</p>
|
2018-05-30 02:47:11 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2018-04-16 00:00:49 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@endsection
|