First Repository
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

25 lines
633 B

<html>
<head>
<meta charset="utf-8">
</head>
<body>
<a href="index.html">Table</a>
<form action="render">
<label>Name</label>
<input type="text" name="name" placeholder="Digite seu nome" />
<label>Age</label>
<input type="number" name="age" placeholder="Digite sua idade" />
<label>Email</label>
<input type=""email placeholder="Digite seu email" />
<label>Confirm Data</label>
<input type="checkbox" />
<button type="submit">Send</button>
<iframe name="render"></iframe>
</form>
<script>
const submitForm = () => {
console.log('Success')
}
</script>
</body>
</html>