Andrew Boyson / web

Dependents:   oldheating gps motorhome heating

base/net/web-net-html.c

Committer:
andrewboyson
Date:
2019-05-17
Revision:
125:772948168e4f
Parent:
110:8ab752842d25
Child:
132:5b2df69a4f17

File content as of revision 125:772948168e4f:

#include "http.h"
#include "web-nav-base.h"
#include "web-add.h"
#include "mac.h"

void WebNetHtml()
{
    HttpOk("text/html; charset=UTF-8", "no-cache", NULL, NULL);
    WebAddHeader("Net", "settings.css", NULL);
    WebAddNav(NET_PAGE);
    WebAddH1("Net");
                     
    WebAddH2("Ethernet");
    WebAddLabelledMac  ("MAC",                   MacLocal);
    
    WebAddEnd();
                        
}