htdocs/jira-account-verify.html (13 lines of code) (raw):
<h1>Request a Jira account</h1>
<div id="verify_response">
Verifying your token, please wait...
</div>
<script>
document.body.onload = () => {
// Check for token verification
const token = location.search.substring(1);
if (token && token.length == 36) {
jira_verify_email(token);
}
}
</script>