pis #2

Merged
fred.boniface merged 76 commits from pis into main 2023-05-06 21:53:45 +01:00
2 changed files with 5 additions and 5 deletions
Showing only changes of commit b529b41911 - Show all commits

View File

@ -105,9 +105,9 @@ async function logout() { // Simply removed the UUID from localstorage
} }
async function showDone() { // Diaplays the 'Done' dialogue. async function showDone() { // Diaplays the 'Done' dialogue.
document.getElementById("done").style = "opacity: 1"; document.getElementById("done").style = "opacity: 1; display: block";
} }
async function hideDone() { // Hides the 'Done' dialogue. async function hideDone() { // Hides the 'Done' dialogue.
document.getElementById("done").style = "opacity: 0"; document.getElementById("done").style = "opacity: 0; display: none";
} }

View File

@ -68,12 +68,12 @@
<button onclick="setQl()" class="lookup-button">Apply</button> <button onclick="setQl()" class="lookup-button">Apply</button>
<button onclick="clearQl()" class="lookup-button">Defaults</button> <button onclick="clearQl()" class="lookup-button">Defaults</button>
<br><br><br> <br><br><br>
<label>Register for Rail Staff Version:</label><br> <label>Register for Rail Staff Version:</label>
<p id="reg_text">Enter your work email address:</p> <p id="reg_text">Enter your work email address:</p>
<input type="text" maxlength="128" id="eml" name="eml" autocomplete="email" class="lookup-box" placeholder="Not yet available"><br> <input type="text" maxlength="128" id="eml" name="eml" autocomplete="email" class="lookup-box" placeholder="Not yet available"><br>
<p>Once you've registered you will receive an email with a link to create your access key.</p> <p>Once you've registered you will receive an email with a link to create your access key.</p>
<p>Your email address is not stored by OwlBoard, accounts do not contain any identifying information and are automatically removed after six months of inactivity.</p> <p>Your email address is not stored by OwlBoard, accounts do not contain any identifying information and are automatically removed after three months of inactivity.</p>
<p>You can use the same email address again on another device to register.</p> <p>You can use the same email address again on multiple devices.</p>
<button onclick="register()" class="lookup-button" id="reg_button">Register</button> <button onclick="register()" class="lookup-button" id="reg_button">Register</button>
</body> </body>