Skip to content

Commit

Permalink
Add emoji to title
Browse files Browse the repository at this point in the history
  • Loading branch information
carlbennett committed Jun 27, 2021
1 parent 732f238 commit cd496b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/templates/User/ChangePassword.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
namespace BNETDocs\Templates\User;
use \CarlBennett\MVC\Libraries\Common;
use \CarlBennett\MVC\Libraries\Pair;
$title = 'Change Password';
$title = '🔑 Change Password';
$description = 'This form allows an individual to change the password to their account.';
$this->opengraph->attach(new Pair('url', '/user/changepassword'));
$error = $this->getContext()->error;
Expand All @@ -22,7 +22,7 @@ switch ($error)
require('./header.inc.phtml'); ?>
<div class="container mb-3">
<div class="card mx-auto mb-3" style="width:18rem;">
<h3 class="card-header text-lg-center"><?=$title?></h3>
<h4 class="card-header text-center"><?=$title?></h4>
<div class="card-body">
<? if ($error !== false) { ?>
<? if (!empty($message)) { ?>
Expand Down

0 comments on commit cd496b3

Please sign in to comment.