index.html: add headings for input and output section

This commit is contained in:
Johannes Kimmel 2023-04-22 02:04:22 +02:00
parent 29560864e5
commit 807203ac01
1 changed files with 11 additions and 4 deletions

View File

@ -6,17 +6,24 @@
<link rel="stylesheet" href="classless.css">
<script src="l3config.js" defer=""></script>
<title>l3config</title>
<style>
<style>
:root, html[data-theme='light'] {
--width: 80rem;
}
</style>
</style>
</head>
<body>
<h1>l3config</h1>
<div class="row">
<div id="l3configinput" class="col"></div>
<div id="l3configoutput" class="col"></div>
<div class="col">
<h2>Input</h2>
<div id="l3configinput"></div>
</div>
<div class="col">
<h2>Output</h2>
<p>Copy the output to <code>/etc/config/gateway</code>.</p>
<div id="l3configoutput"></div>
</div>
</div>
</body>
</html>