xref: /webtrees/resources/views/edit/link-spouse-to-individual.phtml (revision dd6b2bfcc550270bb6d6778e11576148f71e4330)
1*dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\FontAwesome; ?>
2*dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\Functions\FunctionsEdit; ?>
3*dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\I18N; ?>
4*dd6b2bfcSGreg Roach
5*dd6b2bfcSGreg Roach<h2 class="wt-page-title"><?= $title ?></h2>
6*dd6b2bfcSGreg Roach
7*dd6b2bfcSGreg Roach<form class="wt-page-content" method="post">
8*dd6b2bfcSGreg Roach    <?= csrf_field() ?>
9*dd6b2bfcSGreg Roach
10*dd6b2bfcSGreg Roach    <div class="form-group row">
11*dd6b2bfcSGreg Roach        <label class="col-sm-3 col-form-label" for="spouse">
12*dd6b2bfcSGreg Roach            <?= $label ?>
13*dd6b2bfcSGreg Roach        </label>
14*dd6b2bfcSGreg Roach        <div class="col-sm-9">
15*dd6b2bfcSGreg Roach            <?= FunctionsEdit::formControlIndividual($tree, null, ['id' => 'spouse', 'name' => 'spid']) ?>
16*dd6b2bfcSGreg Roach        </div>
17*dd6b2bfcSGreg Roach    </div>
18*dd6b2bfcSGreg Roach
19*dd6b2bfcSGreg Roach    <?= FunctionsEdit::addSimpleTag($tree, '0 MARR Y') ?>
20*dd6b2bfcSGreg Roach    <?= FunctionsEdit::addSimpleTag($tree, '0 DATE', 'MARR') ?>
21*dd6b2bfcSGreg Roach    <?= FunctionsEdit::addSimpleTag($tree, '0 PLAC', 'MARR') ?>
22*dd6b2bfcSGreg Roach
23*dd6b2bfcSGreg Roach    <div class="row form-group">
24*dd6b2bfcSGreg Roach        <div class="col-sm-9 offset-sm-3">
25*dd6b2bfcSGreg Roach            <button class="btn btn-primary" type="submit">
26*dd6b2bfcSGreg Roach                <?= FontAwesome::decorativeIcon('save') ?>
27*dd6b2bfcSGreg Roach                <?= /* I18N: A button label. */
28*dd6b2bfcSGreg Roach                I18N::translate('save') ?>
29*dd6b2bfcSGreg Roach            </button>
30*dd6b2bfcSGreg Roach            <a class="btn btn-secondary" href="<?= e($individual->url()) ?>">
31*dd6b2bfcSGreg Roach                <?= FontAwesome::decorativeIcon('cancel') ?>
32*dd6b2bfcSGreg Roach                <?= /* I18N: A button label. */
33*dd6b2bfcSGreg Roach                I18N::translate('cancel') ?>
34*dd6b2bfcSGreg Roach            </a>
35*dd6b2bfcSGreg Roach        </div>
36*dd6b2bfcSGreg Roach    </div>
37*dd6b2bfcSGreg Roach</form>
38