--- id: bad87fee1348bd9aedd08830 title: Add a Submit Button to a Form challengeType: 0 videoUrl: '' localeTitle: Adicionar um botão Enviar para um formulário --- ## Description
Vamos adicionar um botão de submit ao seu formulário. Clicar neste botão enviará os dados do seu formulário para o URL que você especificou com o atributo de action do seu formulário. Aqui está um exemplo de botão de envio: <button type="submit">this button submits the form</button>
## Instructions
Adicione um botão como o último elemento do seu elemento de form com um tipo de submit e "Enviar" como seu texto.
## Tests
```yml tests: - text: Seu formulário deve ter um botão dentro dele. testString: 'assert($("form").children("button").length > 0, "Your form should have a button inside it.");' - text: Seu botão de envio deve ter o type atributo definido para submit . testString: 'assert($("button").attr("type") === "submit", "Your submit button should have the attribute type set to submit.");' - text: Seu botão de envio só deve ter o texto "Enviar". testString: 'assert($("button").text().match(/^\s*submit\s*$/gi), "Your submit button should only have the text "Submit".");' - text: Certifique-se de que seu elemento de button tenha uma tag de fechamento. testString: 'assert(code.match(/<\/button>/g) && code.match(/
## Challenge Seed
```html

CatPhotoApp

Click here to view more cat photos.

A cute orange cat lying on its back.

Things cats love:

  • cat nip
  • laser pointers
  • lasagna

Top 3 things cats hate:

  1. flea treatment
  2. thunder
  3. other cats
```
## Solution
```js // solution required ```