htdocs/confluence-archive.html (24 lines of code) (raw):
<h1>Archive a Confluence Wiki space</h1>
<form onsubmit="confluence_archive(this); return false;">
<div class="mb-3">
<label for="spacename" class="form-label" style="display: block;">Space name to archive</label>
<input required pattern="[A-Z0-9]+" type="text" class="form-control" id="spacename" name="spacename" style="display: inline-block; width: auto;">
<div id="spacenameHelp" class="form-text">Enter the name of the Confluence Wiki space to archive. Must be uppercase alphanumerical characters only, for instance, INFRATEST.</div>
</div>
<div id="buttons_real">
<button type="submit" class="btn btn-primary">Archive space</button>
</div>
<div id="buttons_spin" style="display: none;">
<button class="btn btn-primary" type="button" disabled>
<span class="spinner-border spinner-border-sm" role="status" aria-hidden="true"></span>
Processing request...
</button>
</div>
<br/>
<hr/>
</form>
<script>
document.body.onload = () => {
OAuthGate();
}
</script>