xref: /webtrees/resources/views/edit/link-spouse-to-individual.phtml (revision 7c7d1e03066c50e172e4a6239e322c1e0cd62040)
1d70512abSGreg Roach<?php
2d70512abSGreg Roach
3d70512abSGreg Roachuse Fisharebest\Webtrees\Functions\FunctionsEdit;
4*7c7d1e03SGreg Roachuse Fisharebest\Webtrees\Http\RequestHandlers\LinkSpouseToIndividualAction;
5*7c7d1e03SGreg Roachuse Fisharebest\Webtrees\I18N;
6d70512abSGreg Roach
7d70512abSGreg Roach?>
8dd6b2bfcSGreg Roach
9dd6b2bfcSGreg Roach<h2 class="wt-page-title"><?= $title ?></h2>
10dd6b2bfcSGreg Roach
11*7c7d1e03SGreg 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
23dd6b2bfcSGreg Roach    <?= FunctionsEdit::addSimpleTag($tree, '0 MARR Y') ?>
24dd6b2bfcSGreg Roach    <?= FunctionsEdit::addSimpleTag($tree, '0 DATE', 'MARR') ?>
25dd6b2bfcSGreg Roach    <?= FunctionsEdit::addSimpleTag($tree, '0 PLAC', 'MARR') ?>
26dd6b2bfcSGreg Roach
27dd6b2bfcSGreg Roach    <div class="row form-group">
28dd6b2bfcSGreg Roach        <div class="col-sm-9 offset-sm-3">
29dd6b2bfcSGreg Roach            <button class="btn btn-primary" type="submit">
30d993d560SGreg Roach                <?= view('icons/save') ?>
31dd6b2bfcSGreg Roach                <?= /* I18N: A button label. */
32dd6b2bfcSGreg Roach                I18N::translate('save') ?>
33dd6b2bfcSGreg Roach            </button>
34dd6b2bfcSGreg Roach            <a class="btn btn-secondary" href="<?= e($individual->url()) ?>">
35d993d560SGreg Roach                <?= view('icons/cancel') ?>
36dd6b2bfcSGreg Roach                <?= /* I18N: A button label. */
37dd6b2bfcSGreg Roach                I18N::translate('cancel') ?>
38dd6b2bfcSGreg Roach            </a>
39dd6b2bfcSGreg Roach        </div>
40dd6b2bfcSGreg Roach    </div>
41dd6b2bfcSGreg Roach</form>
42