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">
|
2024-01-22 09:03:39 +00:00
|
|
|
<div class="card shadow-none border">
|
|
|
|
<div class="card-header bg-transparent p-3">
|
|
|
|
<h4 class="font-weight-bold mb-0 text-center">
|
|
|
|
Account Login
|
|
|
|
</h4>
|
|
|
|
</div>
|
2018-04-16 00:00:49 +00:00
|
|
|
|
2024-01-22 12:26:01 +00:00
|
|
|
@if ($errors->any())
|
|
|
|
@foreach ($errors->all() as $error)
|
|
|
|
<div class="alert alert-danger m-3">
|
|
|
|
<span class="font-weight-bold small"><i class="far fa-exclamation-triangle mr-2"></i> {{ $error }}</span>
|
|
|
|
</div>
|
|
|
|
@endforeach
|
|
|
|
@endif
|
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
|
|
|
|
|
2024-01-22 12:26:01 +00:00
|
|
|
<div class="form-group row mb-0">
|
2018-04-16 00:00:49 +00:00
|
|
|
|
2018-05-30 02:47:11 +00:00
|
|
|
<div class="col-md-12">
|
2024-01-22 09:03:39 +00:00
|
|
|
<label for="email" class="small font-weight-bold text-muted mb-0">Email Address</label>
|
2018-05-30 02:47:11 +00:00
|
|
|
<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
|
2024-01-22 12:26:01 +00:00
|
|
|
|
|
|
|
<div class="help-text small text-right mb-0">
|
|
|
|
<a href="{{ route('email.forgot') }}" class="small text-muted font-weight-bold">
|
|
|
|
{{ __('Forgot Email') }}
|
|
|
|
</a>
|
|
|
|
</div>
|
2018-04-16 00:00:49 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2024-01-22 12:26:01 +00:00
|
|
|
<div class="form-group row mb-0">
|
2018-04-16 00:00:49 +00:00
|
|
|
|
2018-05-30 02:47:11 +00:00
|
|
|
<div class="col-md-12">
|
2024-01-22 09:03:39 +00:00
|
|
|
<label for="password" class="small font-weight-bold text-muted mb-0">Password</label>
|
2018-05-30 02:47:11 +00:00
|
|
|
<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
|
2024-01-22 09:03:39 +00:00
|
|
|
|
|
|
|
<p class="help-text small text-right mb-0">
|
|
|
|
<a href="{{ route('password.request') }}" class="small text-muted font-weight-bold">
|
|
|
|
{{ __('Forgot Password') }}
|
|
|
|
</a>
|
|
|
|
</p>
|
2018-04-16 00:00:49 +00:00
|
|
|
</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
|
|
|
|
|
2024-01-22 09:03:39 +00:00
|
|
|
<button type="submit" class="btn btn-primary btn-block btn-lg font-weight-bold rounded-pill">
|
|
|
|
{{ __('Login') }}
|
|
|
|
</button>
|
2023-07-17 04:54:02 +00:00
|
|
|
|
|
|
|
</form>
|
2023-09-27 07:33:39 +00:00
|
|
|
@if(
|
|
|
|
(config_cache('pixelfed.open_registration') && config('remote-auth.mastodon.enabled')) ||
|
|
|
|
(config('remote-auth.mastodon.ignore_closed_state') && config('remote-auth.mastodon.enabled'))
|
|
|
|
)
|
2023-07-17 04:54:02 +00:00
|
|
|
<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
|
|
|
|
2024-01-22 09:03:39 +00:00
|
|
|
@if(config_cache('pixelfed.open_registration'))
|
2019-06-29 20:45:00 +00:00
|
|
|
<hr>
|
|
|
|
|
2024-01-22 09:03:39 +00:00
|
|
|
<p class="text-center font-weight-bold mb-0">
|
2022-10-23 13:31:10 +00:00
|
|
|
<a href="/register">Register</a>
|
2019-06-29 20:45:00 +00:00
|
|
|
</p>
|
2024-01-22 09:03:39 +00:00
|
|
|
@endif
|
2018-05-30 02:47:11 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2018-04-16 00:00:49 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@endsection
|
2024-01-22 09:03:39 +00:00
|
|
|
|
|
|
|
@push('scripts')
|
|
|
|
<script>
|
|
|
|
document.addEventListener("DOMContentLoaded", function() {
|
|
|
|
function getQueryParam(name) {
|
|
|
|
const urlParams = new URLSearchParams(window.location.search);
|
|
|
|
return urlParams.get(name);
|
|
|
|
}
|
|
|
|
const email = getQueryParam('email');
|
|
|
|
if (email) {
|
|
|
|
const emailInput = document.getElementById('email');
|
|
|
|
if (emailInput) {
|
|
|
|
emailInput.value = email;
|
|
|
|
const passwordInput = document.getElementById('password');
|
|
|
|
if (passwordInput) {
|
|
|
|
passwordInput.focus();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
@endpush
|