Cursos / Jogos Digitais / Programação Orientada a Objetos / Aula

arrow_back Aula 14 - Projeto Prático - Parte 1

Criando formulário

Formulário

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Livros</title>

    <style>
        table, th, td{
            border: 1px solid black;
            border-collapse: collapse;
        }

        th,td{
            padding: 5px;
            text-align: left;
        }
    </style>

</head>
<body>
    <h1>CADASTRO DE LIVROS</h1>

    <form class="form">
        <div>
            <label for="titulo">Título:</label><br>
            <input type="text" id="titulo"/>
        </div>

        <div>
            <label for="autor">Autor:</label><br>
            <input type="text" id="autor"/>
        </div>

        <div>
            <label for="aditora">Editora:</label><br>
            <input type="text" id="editora"/>
        </div>

        <div>
            <label for="ano">Ano:</label><br>
            <input type="number" id="ano"/>
        </div>
        <br>

        <button type="submit">Cadastrar</button>
    </form>

    <br>
    <br>

    <table>

        <tr>
            <th>Título</th>
            <th>Autor</th>
            <th>Editora</th>
            <th>Ano</th>
        </tr>

        <tr>
            <td></td>
            <td></td>
            <td></td>
            <td></td>
        </tr>

    </table>

    <script src="lib/system.js"></script>
    <script>
        System.defaultJSExtensions = true;
        System.import('js/app.js').catch(err => console.error(err))
    </script>
</body>
</html>

Versão 5.3 - Todos os Direitos reservados