Switch the 'modify' code of admin/field.php to use templates
[bugdar.git] / templates / search_save.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'] %> - <%-T("Save Search")%></title>
7 </head>
8
9 <body>
10
11 <%- $header %>
12
13 <% if ($show['errors']): %>
14 <div class="error" style="text-align: <%- $stylevar[left] %>">
15 <%-T("The following errors occurred")%>:
16 <%- $message->errorBox %>
17 </div>
18 <% endif %>
19
20 <form action="search.php" name="register" method="post">
21 <input type="hidden" name="do" value="dosave" />
22 <input type="hidden" name="searchid" value="<%- $searchid %>" />
23
24 <div align="center" style="margin-top: 10px">
25 <div class="box altwidth">
26 <div class="box-head"><%-T("Save Search")%></div>
27
28 <div class="box-mid">
29 <%-T("You can save this search criteria for later by naming this search.")%>
30
31 <br />
32 <br />
33
34 <div><strong><%-T("Name")%>:</strong> <input type="text" name="name" size="30" maxlength="250" value="<%- $name %>" /></div>
35 </div>
36
37 <div class="box-foot box-center">
38 <input type="submit" name="submit" value=" <%-T("Save")%> " accesskey="s" />
39 <input type="reset" name="reset" value=" <%-T("Reset")%> " accesskey="r" />
40 </div>
41 </div>
42 </div>
43
44 </form>
45
46 <%- $footer %>