Poll Widget
How would you make a poll widget component? Just making it in standard HTML but perhaps explore other things like React.
HTML
<div class="poll-widget">
<div class="questions-form-container">
<form class="questions-form" type="post" action="/seasons_endpoint">
<legend>
What is your favorite season?
</legend>
<div class="field">
<input type="radio" name="season" value="spring"/>
<label>Spring</label>
</div>
<div class="field">
<input type="radio" name="season" value="summer"/>
<label>Summer</label>
</div>
<div class="field">
<input type="radio" name="season" value="fall"/>
<label>Fall</label>
</div>
<div class="field">
<input type="radio" name="season" value="winter"/>
<label>Winter</label>
</div>
<div class="field">
<input type="text" name="season" value="winter"/>
<label>Winter</label>
</div>
<input type="submit" value="Submit">
</form>
</div>
<div class="results">
</div>
</div>
CSS
.poll-widget {
background: black;
padding: 10px;
width: 300px;color:white
}
.field {
margin: 5px;
}