Skip to content

Commit

Permalink
Remove references to 'layouts.app' view
Browse files Browse the repository at this point in the history
This was removed in #1351

Update these lingering references to use our base 'cdash' view instead.
  • Loading branch information
zackgalbreath committed Jul 29, 2024
1 parent 199d937 commit 57bfa32
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 6 deletions.
6 changes: 4 additions & 2 deletions resources/views/auth/passwords/email.blade.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
@extends('layouts.app')
@extends('cdash', [
'title' => 'Reset Password'
])

@section('content')
@section('main_content')
<div class="container">
<div class="row justify-content-center">
<div class="col-md-8">
Expand Down
7 changes: 5 additions & 2 deletions resources/views/auth/passwords/reset.blade.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
@extends('layouts.app')
@extends('cdash', [
'title' => 'Reset Password'
])

@section('main_content')

@section('content')
<div class="container">
<div class="row justify-content-center">
<div class="col-md-8">
Expand Down
6 changes: 4 additions & 2 deletions resources/views/auth/verify.blade.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
@extends('layouts.app')
@extends('cdash', [
'title' => 'Verify Email'
])

@section('content')
@section('main_content')
<div class="container">
<div class="row justify-content-center">
<div class="col-md-8">
Expand Down

0 comments on commit 57bfa32

Please sign in to comment.