Visually updated delete host page

This commit is contained in:
laf
2014-03-02 21:05:55 +00:00
parent ce4eb65f7b
commit c403865ac5

View File

@ -23,12 +23,16 @@ if (is_numeric($_REQUEST['id']))
print_error("Are you sure you want to delete device " . $device['hostname'] . "?");
?>
<br />
<form name="form1" method="post" action="">
<form name="form1" method="post" action="" class="form-horizontal" role="form">
<div class="form-group">
<div class="col-sm-4">
<input type="hidden" name="id" value="<?php echo $_REQUEST['id'] ?>" />
<input type="hidden" name="confirm" value="1" />
<!--<input type="hidden" name="remove_rrd" value="<?php echo $_POST['remove_rrd']; ?>">-->
<input type="submit" class="submit" name="Submit" value="Confirm host deletion" />
<button type="submit" class="btn btn-default">Confirm host deletion</button>
</div>
</div>
</form>
<?php
}
}
@ -36,12 +40,16 @@ else
{
?>
<form name="form1" method="post" action="">
<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 and if selected, all data will be removed as well!");?>
<table border="0">
<tr>
<td>Device: </td>
<td><select name="id">
</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">
<?php
@ -51,17 +59,18 @@ foreach (dbFetchRows("SELECT * FROM `devices` ORDER BY `hostname`") as $data)
}
?>
</select></td>
</tr>
</select>
</div>
</div>
<div class="form-group">
<!-- <tr>
<td>Remove RRDs (Data files): </td>
<td><input type="checkbox" name="remove_rrd" value="yes"></td>
</tr>-->
<tr>
<td colspan="2"><input id="confirm" type="hidden" name="confirm" value="0" />
<input id="confirm_delete" type="submit" class="submit" name="Submit" value="Delete Device" /></td>
</tr>
</table>
<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
}