1<?php 2use Fisharebest\Webtrees\I18N; 3 4/** 5 * @var string $title 6 */ 7?> 8 9<h2 class="wt-page-title"> 10 <?= $title ?> 11</h2> 12 13<form class="wt-page-options wt-page-options-login" method="post"> 14 <?= csrf_field() ?> 15 16 <div class="form-group row"> 17 <label class="col-sm-3 col-form-label wt-page-options-label" for="email"> 18 <?= I18N::translate('Email') ?> 19 </label> 20 <div class="col-sm-9 wt-page-options-value"> 21 <input class="form-control" type="email" id="email" name="email" autocomplete="email" required> 22 </div> 23 </div> 24 25 <div class="form-group row"> 26 <div class="col-sm-3 col-form-label wt-page-options-label"> 27 </div> 28 <div class="col-sm-9 wt-page-options-value"> 29 <button class="btn btn-primary" type="submit"> 30 <?= /* I18N: A button label. */ 31 I18N::translate('continue') ?> 32 </button> 33 34 </div> 35 </div> 36</form> 37