webif/var/mongoose/html/diag.shtml
hummypkg ac93144789 add access control and diagnostics
git-svn-id: file:///root/webif/svn/humax/pkg/src/webif/trunk@511 2a923420-c742-0410-a762-8d5b09965624
2011-11-12 23:57:19 +00:00

26 lines
656 B
Plaintext

<!--#include virtual="/lib/header.shtml" -->
<fieldset style="display: inline">
<legend>Diagnostics</legend>
Diagnostic:
<input name=seq id=seq value=general size=30 maxlength=50
class="text ui-widget-content ui-corner-all">
<button id=rundiag>Run Diagnostic</button>
</fieldset>
<div style="margin-top: 2em; display: none" class=pre id=results>
<br><br>
<i>Running diagnostic, please wait...</i>
<br><br>
</div>
<script type=text/javascript>
$('#rundiag').button().click(function() {
$('#results').slideDown().load('/cgi-bin/diag.jim?diag=' +
encodeURIComponent($('#seq').val()));
});
</script>
<!--#include virtual="/lib/footer.shtml" -->