Skip to content

Commit fff1ac3

Browse files
committed
Adds missing H1s to settings pages
1 parent ec0408a commit fff1ac3

File tree

4 files changed

+9
-0
lines changed

4 files changed

+9
-0
lines changed

resources/js/pages/settings/Appearance.vue

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ const breadcrumbItems: BreadcrumbItem[] = [
2121
<AppLayout :breadcrumbs="breadcrumbItems">
2222
<Head title="Appearance settings" />
2323

24+
<h1 class="sr-only">Appearance Settings</h1>
25+
2426
<SettingsLayout>
2527
<div class="space-y-6">
2628
<HeadingSmall

resources/js/pages/settings/Password.vue

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ const currentPasswordInput = ref<HTMLInputElement | null>(null);
2828
<AppLayout :breadcrumbs="breadcrumbItems">
2929
<Head title="Password settings" />
3030

31+
<h1 class="sr-only">Password Settings</h1>
32+
3133
<SettingsLayout>
3234
<div class="space-y-6">
3335
<HeadingSmall

resources/js/pages/settings/Profile.vue

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ const user = page.props.auth.user;
3636
<AppLayout :breadcrumbs="breadcrumbItems">
3737
<Head title="Profile settings" />
3838

39+
<h1 class="sr-only">Profile Settings</h1>
40+
3941
<SettingsLayout>
4042
<div class="flex flex-col space-y-6">
4143
<HeadingSmall

resources/js/pages/settings/TwoFactor.vue

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@ onUnmounted(() => {
4141
<template>
4242
<AppLayout :breadcrumbs="breadcrumbs">
4343
<Head title="Two-Factor Authentication" />
44+
45+
<h1 class="sr-only">Two-Factor Authentication Settings</h1>
46+
4447
<SettingsLayout>
4548
<div class="space-y-6">
4649
<HeadingSmall

0 commit comments

Comments
 (0)