1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
# --
# Copyright (C) 2001-2021 OTRS AG, https://otrs.com/
# --
# This software comes with ABSOLUTELY NO WARRANTY. For details, see
# the enclosed file COPYING for license information (GPL). If you
# did not receive this file, see https://www.gnu.org/licenses/gpl-3.0.txt.
# --
[% RenderBlockStart("DatabaseStart") %]
<div class="W950px SpacingTop SpacingBottom CenterBox">
<form action="[% Env("CGIHandle") %]" method="post" id="FormDB" class="PreventMultipleSubmits">
<input type="hidden" name="Action" value="Installer" />
<input type="hidden" name="Subaction" value="DB" />
<div class="WidgetSimple">
<div class="Header">
<h2>[% Translate(Data.Item) | html %] ([% Data.Step %])</h2>
</div>
<div class="Content">
<fieldset class="TableLike">
<label for="DBType">[% Translate("Type") | html %]:</label>
<div class="Field">
[% Data.SelectDBType %]
</div>
<div class="Clear"></div>
<label>[% Translate("Install Type") | html %]:</label>
<div class="Field">
<div>
<input type="radio" id="DBInstallTypeCreateDB" name="DBInstallType" checked value="CreateDB" />
<label for="DBInstallTypeCreateDB">[% Translate("Create a new database for OTRS") | html %]</label>
</div>
<div>
<input type="radio" id="DBInstallTypeUseDB" name="DBInstallType" value="UseDB" />
<label for="DBInstallTypeUseDB">[% Translate("Use an existing database for OTRS") | html %]</label>
</div>
</div>
<div class="Clear"></div>
</fieldset>
<div class="Spacing Right">
<button class="Primary CallForAction" type="submit" id="FormDBSubmit"><span>[% Translate("Next") | html %]</span></button>
</div>
<div class="Clear"></div>
</div>
</div>
</form>
</div>
[% RenderBlockEnd("DatabaseStart") %]
|