Unify UI as in add device..

Screenshot: http://i.imgur.com/TgpwIXR.png
This commit is contained in:
Arjit Chaudhary
2015-08-29 19:00:50 +05:30
parent 9073cf53b5
commit 7efbb07695

View File

@@ -1,5 +1,3 @@
<h1>Delete Host</h1>
<?php
if ($_SESSION['userlevel'] < 10) {
@@ -27,6 +25,7 @@ else {
print_error("Are you sure you want to delete device " . $device['hostname'] . "?");
?>
<br />
<form name="form1" method="post" action="" class="form-horizontal" role="form">
<div class="form-group">
<div class="col-sm-4">
@@ -46,37 +45,39 @@ else {
else {
?>
<form name="form1" method="post" action="" class="form-horizontal" role="form">
<div class="form-group">
<div class="col-sm-offset-2 col-sm-7">
<?php print_error("Warning, this will remove the device from being monitered!</p>
<p>It will also remove historical data about this device such as <mark>Syslog</mark>, <mark>Eventlog</mark> and <mark>Alert log</mark> data.</p>");?>
</div>
</div>
<div class="form-group">
<label for="id" class="col-sm-2 control-label">Device:</label>
<div class="col-sm-7">
<select name="id" class="form-control" id="id">
<form name="form1" method="post" action="" class="form-horizontal" role="form">
<div class="form-group">
<div class="col-sm-offset-2 col-sm-7">
<div><h2>Delete Device</h2></div>
<div class="alert alert-danger" role="alert">
<center>
<p>Warning, this will remove the device from being monitered!</p>
<p>It will also remove historical data about this device such as <mark>Syslog</mark>, <mark>Eventlog</mark> and <mark>Alert log</mark> data.</p>
</center>
</div>
<div class="well">
<div class="form-group">
<label for="id" class="col-sm-2 control-label">Device:</label>
<div class="col-sm-7">
<select name="id" class="form-control" id="id">
<?php
foreach (dbFetchRows("SELECT * FROM `devices` ORDER BY `hostname`") as $data) {
echo("<option value='".$data['device_id']."'>".$data['hostname']."</option>");
}
<?php
foreach (dbFetchRows("SELECT * FROM `devices` ORDER BY `hostname`") as $data) {
echo("<option value='".$data['device_id']."'>".$data['hostname']."</option>");
}
?>
</select>
</div>
</div>
?>
</select>
<hr>
<input id="confirm" type="hidden" name="confirm" value="0" />
<center><button id="confirm_delete" type="submit" class="btn btn-default">Delete Device</button></center>
</div>
</div>
</div>
<div class="form-group">
<!-- <tr>
<td>Remove RRDs (Data files): </td>
<td><input type="checkbox" name="remove_rrd" value="yes"></td>
</tr>-->
<div class="col-sm-offset-2 col-sm-8">
<input id="confirm" type="hidden" name="confirm" value="0" />
<button id="confirm_delete" type="submit" class="btn btn-default">Delete Device</button>
</div>
</form>
<?php
}