Removed fieldset from form

dependabot/npm_and_yarn/typescript-eslint/parser-4.33.0
Guusvanmeerveld 3 years ago
parent 49b519b015
commit aca2f3d359

@ -13,23 +13,21 @@ const Contact = () => (
name="contact" name="contact"
data-netlify-recaptcha="true" data-netlify-recaptcha="true"
> >
<fieldset> <label htmlFor="email">Email</label>
<label htmlFor="email">Email</label> <input name="email" type="email" required placeholder="Your email address" id="email" />
<input name="email" type="email" required placeholder="Your email address" id="email" /> <label htmlFor="type">Message type</label>
<label htmlFor="type">Message type</label> <select name="type[]" id="type">
<select name="type[]" id="type"> <option value="bug">Bug</option>
<option value="bug">Bug</option> <option value="question">Question</option>
<option value="question">Question</option> <option value="suggestion">Suggestion</option>
<option value="suggestion">Suggestion</option> <option value="other">Other</option>
<option value="other">Other</option> </select>
</select> <label htmlFor="message">Message</label>
<label htmlFor="message">Message</label> <textarea required name="message" placeholder="Your message" id="message"></textarea>
<textarea required name="message" placeholder="Your message" id="message"></textarea> <div data-netlify-recaptcha="true"></div>
<div data-netlify-recaptcha="true"></div> <button className="button" type="submit">
<button className="button" type="submit"> Send
Send </button>
</button>
</fieldset>
</form> </form>
</div> </div>
</div> </div>

Loading…
Cancel
Save