2022-07-29 17:35:53 +00:00
|
|
|
<div class="navbar">
|
|
|
|
<div class="navbaritem">Test</div>
|
|
|
|
<div class="navbaritem">Test 2</div>
|
|
|
|
<div class="navbaritem">Test 3</div>
|
|
|
|
</div>
|
2022-05-11 20:08:48 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<link rel="stylesheet" type="text/css" href="/reset.css">
|
|
|
|
<link rel="stylesheet" type="text/css" href="/sig.css">
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<script type="text/javascript">
|
|
|
|
function loadCodeBackground() {
|
|
|
|
fetch("/codeBackground").then((data)=>data.text())
|
|
|
|
.then((data)=>{
|
|
|
|
document.getElementById("codeForeground").innerText=data
|
|
|
|
document.getElementById("codeBackground").innerText=data
|
|
|
|
})
|
|
|
|
}
|
|
|
|
loadCodeBackground();
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
2022-06-03 19:35:03 +00:00
|
|
|
<div class="contentBody">
|
2022-05-11 20:08:48 +00:00
|
|
|
SigPlace
|
|
|
|
<form method="post" action="./SUBMITFILE" enctype="multipart/form-data">
|
2022-05-11 20:22:43 +00:00
|
|
|
<input type="file" name="file1"/>
|
2022-05-11 20:08:48 +00:00
|
|
|
<input type="submit"/>
|
|
|
|
</form>
|
|
|
|
</div> <!--End Content Body-->
|
|
|
|
<div class="codeForeground" id="codeForeground"></div>
|
|
|
|
<div class="codeBackground" id="codeBackground"></div>
|
|
|
|
</body>
|
|
|
|
<footer>
|
|
|
|
</footer>
|
|
|
|
</html>
|