1dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\I18N; ?> 2dd6b2bfcSGreg Roach 3dd6b2bfcSGreg Roach<p> 4*c65e00b4SGreg Roach<?= I18N::translate('You are signed in as %s.', e($user->userName())) ?> 5dd6b2bfcSGreg Roach</p> 6dd6b2bfcSGreg Roach 7dd6b2bfcSGreg Roach<form method="POST" action="<?= e(route('logout')) ?>"> 8dd6b2bfcSGreg Roach <?= csrf_field() ?> 9dd6b2bfcSGreg Roach 10dd6b2bfcSGreg Roach <button type="submit" class="btn btn-primary"> 11dd6b2bfcSGreg Roach <?= /* I18N: A button label. */ I18N::translate('sign out') ?> 12dd6b2bfcSGreg Roach </button> 13dd6b2bfcSGreg Roach</form> 14