HCE Project DC service web UI  0.2
Hierarchical Cluster Engine DC service web UI
 All Classes Namespaces Files Functions Variables Pages
__siteDeleteDialog.php
Go to the documentation of this file.
1 <div class = "dialog-overlay">
2  <div id = "delete-dialog">
3  <form action = "/SiteDelete/delete?siteId=<?=$id?>&state=<?=$state?>" method = "post">
4  <h3>Delete Site</h3>
5  <table>
6  <tr>
7  <td>Site ID</td>
8  <td><?=$id?></td>
9  </tr>
10  <tr>
11  <td>Delete task type</td>
12  <td width = "100">
13  <select name = "type">
14  <option value = "1" selected>Synchronous</option>
15  <option value = "2">Asynchronous</option>
16  </select>
17  </td>
18  </tr>
19  <tr>
20  <td>Timeout</td>
21  <td><input type = "text" name = "timeout" class = "righted"></td>
22  </tr>
23  <tr>
24  <td><input type = "submit" id = "delete-confirm"></td>
25  <td><input type = "button" value = "Cancel" onclick = "cancelDelete()"/></td>
26  </tr>
27  </table>
28  </form>
29 </div>
30 </div>