Skip to content
This repository was archived by the owner on Oct 24, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions src/auth/login.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,13 @@ class="form-control @error('password') is-invalid @enderror" name="password"

<div class="form-group row">
<div class="col-md-8 offset-md-4">
<div class="form-check">
<input class="form-check-input" type="checkbox" name="remember" id="remember"
{{ old('remember') ? 'checked' : '' }}>

<label class="form-check-label" for="remember">
<div class="form-group d-flex align-items-center form-group--gapped">
<div>
<input class="form-control d-flex align-items-center" type="checkbox" name="remember" id="remember"
{{ old('remember') ? 'checked' : '' }}>
</div>

<label class="col-form-label p-0" for="remember">
{{ __('interface.actions.remember_me') }}
</label>
</div>
Expand Down
8 changes: 4 additions & 4 deletions src/auth/register.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -92,15 +92,15 @@ class="col-md-4 col-form-label text-md-right">{{ __('interface.data.confirm_pass
<div class="row">
<div class="col-md-8 offset-md-4">
<div class="form-group bg-white border rounded py-2 px-3">
<div class="row">
<div class="col-md-2">
<div class="form-group d-flex align-items-center form-group--gapped mb-0">
<div>
<input id="accept_{{ $accept->id }}" type="checkbox"
class="form-control" name="accept_{{ $accept->id }}"
class="form-control d-flex align-items-center" name="accept_{{ $accept->id }}"
value="true">
</div>

<label for="accept_{{ $accept->id }}"
class="col-md-10 col-form-label">{!! __('interface.misc.accept_notice', [
class="col-form-label p-0">{!! __('interface.misc.accept_notice', [
'link' =>
'<a href="' .
(Route::has($accept->route) ? route($accept->route) : $accept->route) .
Expand Down
1 change: 1 addition & 0 deletions src/lang/de/interface.php
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,7 @@
'verifying' => 'Wird verifiziert',
],
'misc' => [
'accept_notice' => 'Ich habe das Dokument :link (Stand: :date) gelesen und akzeptiere die aufgeführten Bedingungen.',
'performance' => 'Leistung',
'instance' => 'Instanz',
'contract' => 'Vertrag',
Expand Down
1 change: 1 addition & 0 deletions src/lang/en/interface.php
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,7 @@
'verifying' => 'Verifying',
],
'misc' => [
'accept_notice' => 'I have read the document :link (as of :date) and accept the terms and conditions.',
'performance' => 'Performance',
'instance' => 'Instance',
'contract' => 'Contract',
Expand Down
4 changes: 4 additions & 0 deletions src/scss/app.scss
Original file line number Diff line number Diff line change
Expand Up @@ -826,3 +826,7 @@ h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
transform: translate(50%, -50%);
}
}

.form-group--gapped {
gap: 0.75rem;
}