htdocs/confluence-account.html (57 lines of code) (raw):
<h1>Request a Confluence account</h1>
<p>Confluence is a popular wiki. As with a lot of things these days, wikis are a popular target for spammers. It is with regret that we currently are not accepting new accounts unless
vetted by an ASF Project beforehand.</p>
<p>If you are a committer to an ASF project, use your ASF id and password to login to Confluence. If not, use this form to request an account, after which the project will then grant
you edit access if appropriate.</p>
<div class="alert alert-warning">
<h5>Please read the following before you request a Confluence account:</h5>
<ul style="margin: 0px;">
<li>You do NOT need a Confluence account to view wiki pages.</li>
<li>Have you discussed requiring wiki access on the appropriate mailing list?
Depending on the topic, wiki access may not be needed.
</li>
</ul>
</div>
<form onsubmit="confluence_account_request_submit(this); return false;">
<div class="mb-3">
<label for="project" class="form-label">For which ASF project do you want to have Confluence access?</label>
<select class="form-control" id="project" name="project" aria-describedby="projectHelp" onchange="confluence_check_project(this.value)">
<option selected disabled value="">--- Select a project ---</option>
</select>
<div id="projectHelp" class="form-text">Select the ASF project you will initially be contributing to with this account. Make sure you have selected the correct project, and that they are using Confluence as a wiki, as the project will be reviewing your account request. Once your account is approved, you can use that same account for other project wikis that grant you write
access.</div>
</div>
<div class="mb-3">
<label for="email" class="form-label">Email address</label>
<input type="email" class="form-control project-dependent" id="email" name="email" aria-describedby="emailHelp">
<div id="emailHelp" class="form-text">We'll never share your email with anyone else. Please ensure this email address is correct, as we will use it to verify your request.</div>
</div>
<div class="mb-3">
<label for="username" class="form-label">Desired user name</label>
<input type="text" class="form-control project-dependent" id="username" name="username" aria-describedby="usernameHelp">
<div id="usernameHelp" class="form-text">Your user name must be between 4 and 20 characters long, alphanumeric only.</div>
</div>
<div class="mb-3">
<label for="realname" class="form-label">Your real (public) name</label>
<input type="text" class="form-control project-dependent" id="realname" name="realname" aria-describedby="realnameHelp">
<div id="realnameHelp" class="form-text">This is your actual name, as it will appear on Confluence pages you edit.</div>
</div>
<div class="mb-3">
<label for="why" class="form-label">Tell us a little about what you intend to use this account for.
<br>N.B. You do NOT need an account to view Confluence pages.
</label>
<textarea class="form-control project-dependent" id="why" name="why" aria-describedby="whyHelp"></textarea>
<div id="whyHelp" class="form-text">Adding a proper description of your intended use for this account will assist the project in reviewing this request.</div>
</div>
<div class="mb-3 form-check">
<input type="checkbox" class="form-check-input project-dependent" name="verify" id="verify" value="agree">
<label class="form-check-label" for="verify">I agree to let the project for which I am requesting an account review my public data.</label>
<div id="verifyHelp" class="form-text">We will share your user name, public name, and reason for requesting an account with the project you specify, but will <em>not</em> share your email address.</div>
</div>
<button type="submit" class="btn btn-primary project-dependent">Submit</button>
</form>
<script>
document.body.onload = () => {
confluence_seed_project_list();
}
</script>