23 lines
698 B
HTML
23 lines
698 B
HTML
|
<style>
|
||
|
.submitarea{
|
||
|
flex-grow: 1;
|
||
|
border-style: groove;
|
||
|
border-width: 1px;
|
||
|
overflow-wrap: break-word;
|
||
|
word-wrap: break-word;
|
||
|
overflow: scroll;
|
||
|
}
|
||
|
|
||
|
</style>
|
||
|
<button id="showJson">Show Json</button>
|
||
|
<div id="rawdata" class="flexcontainer" style="display: none;">
|
||
|
<div class="submitarea" id="json" contenteditable="true"></div>
|
||
|
<div class="submitarea" id="backupjson">backup will be here</div>
|
||
|
</div>
|
||
|
<button id="submit">Submit</button>
|
||
|
<div>BackupStatus:</div>
|
||
|
<div id="backuptimestamp"></div>
|
||
|
<div id="backupsize"></div>
|
||
|
<button id="backup">Backup</button>
|
||
|
<button id="restorebackup">Restore</button>
|
||
|
<div id="submit_status"></div>
|