Commit 975a6f5e authored by Alyx's avatar Alyx
Browse files

HTML is now W3C compliant

parent 65ddf842
Loading
Loading
Loading
Loading
+23 −11
Original line number Diff line number Diff line
<!doctype html>
<html lang="en-US">
<head>
    <title>IPMI Network File Server</title>
<h1>IPMI Network File Server</h1>
    <style>
        table, th, td {
            border: 1px solid black;
@@ -11,6 +12,10 @@
            padding: 4px
        }
    </style>
</head>
<body>
<h1>IPMI Network File Server</h1>

<div>
    <p>This utility is to help serve external files within an otherwise isolated IPMI network, for use by BMCs to pull
        updates or mount virtual media. This bastion host acts as a jump box or bastion, and has external network
@@ -32,6 +37,7 @@
<div>
    <h3>Available Files:</h3>
    <table>
        <thead>
        <tr>
            <td>
                <b>Filename</b>
@@ -49,6 +55,7 @@
                <b>SHA256 Checksum</b>
            </td>
        </tr>
        </thead>
        <tbody id="file-list">
        </tbody>
    </table>
@@ -59,6 +66,9 @@
<ul>
    <!--<li>downloads.dell.com HTTP proxy (port 3355)-->
</ul>
<footer>
    <small>The source code for this can be found at <a href="https://git.en0.io/arnhemnetworks/ipmi-file-server">https://git.en0.io/arnhemnetworks/ipmi-file-server</a></small>
</footer>
<script>
    function fetchFileList() {
        fetch('/files').then(response => response.text()).then(data => {
@@ -77,3 +87,5 @@
    fetchFileList();
    fetchDiskSpace();
</script>
</body>
</html>
 No newline at end of file