Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 44 additions & 7 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,12 +1,49 @@
<!DOCTYPE html>
<html lang="en">
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Static Template</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Formulario</title>
</head>
<body>
<h1>This is a static template, there is no bundler or bundling involved!</h1>
<fieldset>
<legend>Login</legend>
<form>
<label for="name"> Name: </label>
<input type="text" id="name" placeholder="Digite seu nome" />
<br />

<label for="email"> E-mail:</label>
<input type="email" id="email" placeholder="Digite seu email" />
<br />

<label for="senha"> Senha: </label>
<input type="password" id="senha" placeholder="Digite sua senha" />
<br />

<label for="number"> Idade: </label>
<input type="number" id="number" placeholder="Digite sua idade" />
<br />

<label for="">Aluno Vai na Web:</label>
<input id="apenasUm" name="apenasUm" type="radio" />
<label for="apenasUm"> Sim </label>

<input id="apenasUm" name="apenasUm" type="radio" />
<label for="nao"> Não </label>
<br />

<label for="">Tipos de batata:</label>
<input id="frita" type="checkbox" />
<label for="frita">Batata Frita</label>

<input id="assada " type="checkbox" />
<label for="assada">Batata Assada</label>
<br />

<input type="submit" />
</form>
</fieldset>
</body>
</html>
</html>
12 changes: 4 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "static",
"name": "formulario",
"version": "1.0.0",
"description": "This is a static template with no bundling",
"description": "",
"main": "index.html",
"scripts": {
"start": "serve",
Expand All @@ -11,11 +11,7 @@
"type": "git",
"url": "git+https://github.com/codesandbox-app/static-template.git"
},
"keywords": [
"static",
"template",
"codesandbox"
],
"keywords": [],
"author": "Ives van Hoorne",
"license": "MIT",
"bugs": {
Expand All @@ -25,4 +21,4 @@
"devDependencies": {
"serve": "^11.2.0"
}
}
}