<body> in eigene Zeile (für späteres entfernen)
[kivitendo-erp.git] / templates / webpages / admin / test_db_connection.html
1 [%- USE T8 %]
2 [%- USE HTML %]
3 <body>
4
5  <div class="listtop">[% title %]</div>
6
7  [%- IF connection_ok %]
8
9  <p class="message_ok">[% 'The connection was established successfully.' | $T8 %]</p>
10
11  [%- ELSE %]
12
13  <p class="message_error">
14   [% 'The connection to the database could not be established.' | $T8 %]
15   [% 'Error message from the database driver:' | $T8 %]
16  </p>
17
18  <p>[% HTML.escape(errstr) %]</p>
19
20  [%- END %]
21
22  <p>
23   <form>
24    <input type="button" class="submit" onclick="window.close()" value="[% 'Close Window' | $T8 %]">
25   </form>
26  </p>
27
28 </body>
29 </html>