JSFiddle - React, Tailwind, and code Playground

by Allie Yu

HTML

<form name="registrationForm">
    <input type="range" 
            name="ageInputName" 
            id="ageInputId" 
            value="24" 
            min="1" 
            max="100" 
            oninput="ageOutputId.value = ageInputId.value">
            
    <output name="ageOutputName" id="ageOutputId">24</output>
</form>


<form name="registrationForm">
    <input type="range" 
            name="inputName"
            id="inputId" 
            value="24" 
            min="1" 
            max="100" 
            oninput="outputId.value = inputId.value">
            
    <output name="outputName" id="outputId">24</output>
</form>