Skip to content

Commit

Permalink
Fix a bug that an e-mail completion message of a password reset link …
Browse files Browse the repository at this point in the history
…is displayed duplicate
  • Loading branch information
ngmy committed Aug 23, 2016
1 parent 5e0d750 commit 42ff6e5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 13 deletions.
13 changes: 0 additions & 13 deletions resources/views/app.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,19 +76,6 @@
</div>
</div>

<div class="container-fluid">
<div class="row">
<div class="col-md-8 col-md-offset-2">
@if (Session::has('status'))
<div class="alert alert-success alert-dismissible" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">&times;</span></button>
{!! Session::get('status') !!}
</div>
@endif
</div>
</div>
</div>

@yield('content')

<footer class="footer">
Expand Down
7 changes: 7 additions & 0 deletions resources/views/deployments/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@
<div class="container-fluid">
<div class="row">
<div class="col-md-8 col-md-offset-2">
@if (Session::has('status'))
<div class="alert alert-success alert-dismissible" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">&times;</span></button>
{!! Session::get('status') !!}
</div>
@endif

<h1 class="page-header">Deployments</h1>

<div class="pull-right margin-bottom-lg">
Expand Down

0 comments on commit 42ff6e5

Please sign in to comment.