Tilføj name til nickname, portfolio, hype-niveau og checkbox. Radio-gruppen har allerede name="reason".
<form>
<label for="nickname">Nickname</label>
<input id="nickname" type="text" value="PixelPanda">
<label for="portfolio">Portfolio</label>
<input id="portfolio" type="url" value="https://example.com">
<fieldset>
<legend>Hvad håber du at få med hjem?</legend>
<label for="inspiration">
<input id="inspiration" type="radio" name="reason" value="inspiration" checked>
Inspiration
</label>
<label for="tools">
<input id="tools" type="radio" name="reason" value="tools">
Praktiske værktøjer
</label>
<label for="network">
<input id="network" type="radio" name="reason" value="network">
Nye kontakter
</label>
</fieldset>
<label for="hype">Hype-niveau</label>
<input id="hype" type="range" min="0" max="100" value="60">
<label for="guidelines">
<input id="guidelines" type="checkbox" value="accepted" checked>
Jeg accepterer eventets retningslinjer
</label>
</form>