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"> <link rel="stylesheet" href="classless.css">
<script src="l3config.js" defer=""></script> <script src="l3config.js" defer=""></script>
<title>l3config</title> <title>l3config</title>
<style> <style>
:root, html[data-theme='light'] { :root, html[data-theme='light'] {
--width: 80rem; --width: 80rem;
} }
</style> </style>
</head> </head>
<body> <body>
<h1>l3config</h1> <h1>l3config</h1>
<div class="row"> <div class="row">
<div id="l3configinput" class="col"></div> <div class="col">
<div id="l3configoutput" class="col"></div> <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> </div>
</body> </body>
</html> </html>