1 [%- USE HTML %][%- USE LxERP -%][%- USE L -%]
3 [% INCLUDE 'common/flash.html' %]
5 <h1>[% LxERP.t8("Database login (#1)", title) %]</h1>
7 <p>[% LxERP.t8('Here you only provide the credentials for logging into the database.') %] [% LxERP.t8('Nothing will be created or deleted at this stage!') %]</p>
9 <form method="post" action="controller.pl">
12 <th align="right">[% LxERP.t8('Host') %]</th>
13 <td>[% L.input_tag('dbhost', dbhost, size=30, class="initial_focus") %]</td>
14 <th align="right">[% LxERP.t8('Port') %]</th>
15 <td>[% L.input_tag('dbport', dbport, size=6) %]</td>
19 <th align="right">[% LxERP.t8('Database User') %]</th>
20 <td>[% L.input_tag("dbuser", dbuser, size=30) %]</td>
21 <th align="right">[% LxERP.t8('Password') %]</th>
22 <td>[% L.input_tag("dbpasswd", dbpasswd, type='password', size=30) %]</td>
26 <th align="right">[% LxERP.t8('Database template') %]</th>
27 <td>[% L.input_tag("dbdefault", dbdefault, size=30) %]</td>
31 [% L.hidden_tag("action", 'Admin/dispatch') %]
34 [% L.submit_tag('action_' _ next_action, LxERP.t8('Login')) %]