xref: /webtrees/resources/views/edit/link-spouse-to-individual.phtml (revision 8d651de7b758fef022f7f2eac753719b60062669)
1d70512abSGreg Roach<?php
2d70512abSGreg Roach
3d70512abSGreg Roachuse Fisharebest\Webtrees\Functions\FunctionsEdit;
47c7d1e03SGreg Roachuse Fisharebest\Webtrees\Http\RequestHandlers\LinkSpouseToIndividualAction;
57c7d1e03SGreg Roachuse Fisharebest\Webtrees\I18N;
6d70512abSGreg Roach
7d70512abSGreg Roach?>
8dd6b2bfcSGreg Roach
9dd6b2bfcSGreg Roach<h2 class="wt-page-title"><?= $title ?></h2>
10dd6b2bfcSGreg Roach
117c7d1e03SGreg Roach<form method="post" action="<?= e(route(LinkSpouseToIndividualAction::class, ['tree' => $tree->name(), 'xref' => $xref])) ?>" class="wt-page-content">
12dd6b2bfcSGreg Roach    <?= csrf_field() ?>
13dd6b2bfcSGreg Roach
14dd6b2bfcSGreg Roach    <div class="form-group row">
15dd6b2bfcSGreg Roach        <label class="col-sm-3 col-form-label" for="spouse">
16dd6b2bfcSGreg Roach            <?= $label ?>
17dd6b2bfcSGreg Roach        </label>
18dd6b2bfcSGreg Roach        <div class="col-sm-9">
19b6c326d8SGreg Roach            <?= view('components/select-individual', ['name' => 'spid', 'id' => 'spouse', 'tree' => $tree]) ?>
20dd6b2bfcSGreg Roach        </div>
21dd6b2bfcSGreg Roach    </div>
22dd6b2bfcSGreg Roach
23*8d651de7SRichard Cissée    <?= FunctionsEdit::addSimpleTags($tree, 'MARR') ?>
24dd6b2bfcSGreg Roach
25dd6b2bfcSGreg Roach    <div class="row form-group">
26dd6b2bfcSGreg Roach        <div class="col-sm-9 offset-sm-3">
27dd6b2bfcSGreg Roach            <button class="btn btn-primary" type="submit">
28d993d560SGreg Roach                <?= view('icons/save') ?>
29dd6b2bfcSGreg Roach                <?= /* I18N: A button label. */
30dd6b2bfcSGreg Roach                I18N::translate('save') ?>
31dd6b2bfcSGreg Roach            </button>
32dd6b2bfcSGreg Roach            <a class="btn btn-secondary" href="<?= e($individual->url()) ?>">
33d993d560SGreg Roach                <?= view('icons/cancel') ?>
34dd6b2bfcSGreg Roach                <?= /* I18N: A button label. */
35dd6b2bfcSGreg Roach                I18N::translate('cancel') ?>
36dd6b2bfcSGreg Roach            </a>
37dd6b2bfcSGreg Roach        </div>
38dd6b2bfcSGreg Roach    </div>
39dd6b2bfcSGreg Roach</form>
40*8d651de7SRichard Cissée
41*8d651de7SRichard Cissée<?= view('modals/ajax') ?>
42