1d70512abSGreg Roach<?php 2d70512abSGreg Roach 3d70512abSGreg Roachuse Fisharebest\Webtrees\I18N; 4d70512abSGreg Roach 5d70512abSGreg Roach?> 6dd6b2bfcSGreg Roach 7*9e3c2cf9SGreg Roach<div class="row mb-3"> 8f0e822ddSGreg Roach <label class="col-form-label col-sm-2" for="submitter-name"> 9dd6b2bfcSGreg Roach <?= I18N::translate('Name') ?> 10dd6b2bfcSGreg Roach </label> 11f0e822ddSGreg Roach <div class="col-sm-10"> 127dca5265SGreg Roach <input class="form-control" type="text" id="submitter-name" name="submitter_name" required="required"> 13dd6b2bfcSGreg Roach </div> 14f0e822ddSGreg Roach</div> 15*9e3c2cf9SGreg Roach<div class="row mb-3"> 16f0e822ddSGreg Roach <label class="col-form-label col-sm-2" for="submitter-email"> 17f0e822ddSGreg Roach <?= I18N::translate('Email') ?> 18f0e822ddSGreg Roach </label> 19f0e822ddSGreg Roach <div class="col-sm-10"> 20f0e822ddSGreg Roach <input class="form-control" type="text" id="submitter-email" name="submitter_email"> 21f0e822ddSGreg Roach </div> 22f0e822ddSGreg Roach</div> 23*9e3c2cf9SGreg Roach<div class="row mb-3"> 24f0e822ddSGreg Roach <label class="col-form-label col-sm-2" for="submitter-phone"> 25f0e822ddSGreg Roach <?= I18N::translate('Phone') ?> 26f0e822ddSGreg Roach </label> 27f0e822ddSGreg Roach <div class="col-sm-10"> 28f0e822ddSGreg Roach <input class="form-control" type="text" id="submitter-phone" name="submitter_phone"> 29f0e822ddSGreg Roach </div> 30f0e822ddSGreg Roach</div> 31*9e3c2cf9SGreg Roach<div class="row mb-3"> 32f0e822ddSGreg Roach <label class="col-form-label col-sm-2" for="submitter-address"> 33dd6b2bfcSGreg Roach <?= I18N::translate('Address') ?> 34dd6b2bfcSGreg Roach </label> 35f0e822ddSGreg Roach <div class="col-sm-10"> 36dd6b2bfcSGreg Roach <input class="form-control" type="text" id="submitter-address" name="submitter_address"> 37dd6b2bfcSGreg Roach </div> 38f0e822ddSGreg Roach</div> 39dd6b2bfcSGreg Roach 40dd6b2bfcSGreg Roach<?= view('modals/restriction-fields') ?> 41