website/index.njk

17 lines
594 B
Plaintext

---
layout: base.njk
---
<h1>email.radio</h1>
<p>email.radio is dedicated to providing free email hosting for all licensed ham radio operators. You will get a (free!) email @email.radio address.</p>
<p>A magical signup form will appear here on May 3rd, 2023.</p>
<input placeholder="Callsign" id="call" oninput="updateEmail()">
<p id="email">Your email will be</p>
<button disabled>This button will enable on the 3rd!</button>
<script>
function updateEmail(){
document.querySelector("#email").innerHTML = `Your email will be ${document.querySelector("#call").value}@email.radio!`
}
</script>