Skip to content

Commit

Permalink
added own layout files for login/pw reset
Browse files Browse the repository at this point in the history
  • Loading branch information
strifejeyz committed Mar 28, 2020
1 parent e40cecd commit ce7c1fc
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/views/auth/expired.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@extend('layouts/frontend', ['title' => 'Password Recovery'])
@extend('layouts/auth', ['title' => 'Password Recovery'])

<div class="container">
<div class="col-md-4"></div>
Expand Down
2 changes: 1 addition & 1 deletion app/views/auth/forgot.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@extend('layouts/frontend', ['title' => 'Password Recovery'])
@extend('layouts/auth', ['title' => 'Password Recovery'])

<div class="container">
<div class="col-md-4"></div>
Expand Down
2 changes: 1 addition & 1 deletion app/views/auth/login.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@extend('layouts/frontend', ['title' => 'Sign In'])
@extend('layouts/auth', ['title' => 'Sign In'])

<br><br><br>

Expand Down
2 changes: 1 addition & 1 deletion app/views/auth/reset.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@extend('layouts/frontend', ['title' => 'Password Recovery'])
@extend('layouts/auth', ['title' => 'Password Recovery'])

<div class="container">
<div class="col-md-4"></div>
Expand Down
2 changes: 2 additions & 0 deletions app/views/layouts/auth/footer.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
</body>
</html>
15 changes: 15 additions & 0 deletions app/views/layouts/auth/header.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US">
<head>
<title>{{$title}} &mdash; {{APP_NAME}}</title>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta name="author" content="{{@$author}}">
<meta name="keywords" content="{{@$keywords}}">
<meta name="description" content="{{@$description}}">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://bootswatch.com/3/slate/bootstrap.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Barlow+Condensed&display=swap">
</head>
<body>

0 comments on commit ce7c1fc

Please sign in to comment.