<body> entfernt.
[kivitendo-erp.git] / templates / webpages / admin / check_auth_database.html
1 [%- USE T8 %]
2 [%- USE HTML %]
3
4  <div class="listtop">[% title %]</div>
5
6  <form method="post" action="admin.pl">
7
8   <p>
9    [% 'The database for user management and authentication does not exist. You can create let kivitendo create it with the following parameters:' | $T8 %]
10   </p>
11
12   <table border="0">
13    <tr>
14     <td>[% 'Host' | $T8 %]:</td>
15     <td>[% HTML.escape(db_host) %]</td>
16    </tr>
17    <tr>
18     <td>[% 'Port' | $T8 %]:</td>
19     <td>[% HTML.escape(db_port) %]</td>
20    </tr>
21    <tr>
22     <td>[% 'User name' | $T8 %]:</td>
23     <td>[% HTML.escape(db_user) %]</td>
24    </tr>
25    <tr>
26     <td>[% 'Database name' | $T8 %]:</td>
27     <td>[% HTML.escape(db_db) %]</td>
28    </tr>
29   </table>
30
31   <p>
32    [% 'Please enter the name of the database that will be used as the template for the new database:' | $T8 %]
33   </p>
34
35   <p>[% 'Template database' | $T8 %]: <input name="db_template" value="template1"></p>
36
37   <p>
38    [% 'If the database user listed above does not have the right to create a database then enter the name and password of the superuser below:' | $T8 %]
39   </p>
40
41   <table border="0"
42    <tr>
43     <td>[% 'Superuser name' | $T8 %]:</td>
44     <td><input name="db_superuser"></td>
45    </tr>
46
47    <tr>
48     <td>[% 'Password' | $T8 %]:</td>
49     <td><input type="password" name="db_superuser_password"></td>
50    </tr>
51   </table>
52
53   <input type="hidden" name="{AUTH}admin_password" value="[% HTML.escape(admin_password) %]">
54   <input type="hidden" name="action" value="create_auth_db">
55
56   <input type="submit" class="submit" value="[% 'Create Dataset' | $T8 %]">
57   <input type="button" class="submit" onclick="history.back()" value="[% 'Back' | $T8 %]">
58
59  </form>
60