mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-06-19 20:00:23 +02:00
24 lines
794 B
HTML
24 lines
794 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Log</title>
|
|
<script src="log.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="log.css"></link>
|
|
</head>
|
|
<body onload="ready()">
|
|
<div class="search">
|
|
<input id="search-input" placeholder="filter" />
|
|
<button id="view-logs">Open Log Directory</button>
|
|
</div>
|
|
|
|
<ul class="tabs top">
|
|
<li class="tab-link current" data-tab="domain-server">Domain Server</li>
|
|
<li class="tab-link" data-tab="assignment-client">Assignment Clients</li>
|
|
</ul>
|
|
|
|
<div class="tab-content bottom">
|
|
<div class="tab-pane" id="domain-server"></div>
|
|
<div class="tab-pane" id="assignment-client"><div>
|
|
</div>
|
|
</body>
|
|
</html>
|