Html formulario

Alguem sabe o que e isso
{“code”:“MethodNotAllowedError”,“message”:“POST is not allowed”}

1 curtida

Vamos consultar a bola de cristal pra saber o código que está fazendo.

2 curtidas

<!doctype html>

Documento sem título
<body>
	<form action="" method="post">
		<label for="nome">Nome:</label>
		
		<input id="nome" type="text" placeholder="digite seu nome" name="nome"/>
		
		<label for="nome">Você gostou do site?</label>
		
		<input type="radio" name="opcao" value="sim" checked="checked" /> Sim
		
		<input type="radio" name="opcao" value="nao" /> Não
		
		<label for="linguagem">Você que aprender mais sobre:</label> 
		
		<input type="checkbox" name="html" />HTNL
		
		<input type="checkbox" name="css" />CSS
		
		<textarea></textarea>
		
		<input type="submit" value="Enviar" />
	</form>
	
</body>

quando aperto o ente , aparece essa msg {“code”:“MethodNotAllowedError”,“message”:“POST is not allowed”}

Faltou voce especificar a action que vai receber o post. Exemplo: https://www.w3schools.com/tags/tag_form.asp

valeu

1 curtida