Switch the 'modify' code of admin/field.php to use templates
[bugdar.git] / templates / std_message.tpl
1 <%- $doctype %>
2 <html xmlns="http://www.w3.org/1999/xhtml" lang="<%- $stylevar['lang'] %>" xml:lang="<%- $stylevar['lang'] %>" dir="<%- $stylevar['lang_dir'] %>">
3 <head>
4 <%- $headinclude %>
5 <link rel="stylesheet" type="text/css" href="templates/box.css" media="screen" />
6 <title><%- bugdar::$options['trackertitle'] %> - <% if ($show['confirm']): %><%-T("Confirm")%><% else: %><%-T("Notice")%><% endif %></title>
7 </head>
8
9 <body>
10
11 <%- $header %>
12
13 <% if ($show['confirm']): %>
14 <form name="confirm" action="<%- $action %>" method="post">
15 <input type="hidden" name="do" value="<%- $do %>" />
16 <%- $extra %>
17 <% endif %>
18
19 <div align="center" style="margin-top: 10px">
20 <div class="box altwidth">
21 <div class="box-head" style="text-align: <%- $stylevar['left'] %>"><% if ($show['confirm']): %><%-T("Confirm")%><% else: %><%-T("Notice")%><% endif %></div>
22
23 <div class="box-mid box-overpad" style="text-align: <%- $stylevar['left'] %>">
24 <%- $message %>
25
26 <% if ($show['confirm']): %>
27 <br />
28 <br />
29
30 <div id="submitrow">
31 <input type="submit" name="submit" value="<%- $button %>" />
32 <script type="text/javascript"> draw_cancel("<%- $cancel %>"); </script>
33 </div>
34 <% endif %>
35 </div>
36 </div>
37 </div>
38
39 <% if ($show['confirm']): %>
40 </form>
41 <% endif %>
42
43 <%- $footer %>