Untitled

                Never    
HTML
       
<!doctype html>
<html lang="pt-br">
  <head>
    <!-- Required meta tags -->
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">

    <!-- Bootstrap CSS -->
    <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.2/css/bootstrap.min.css" integrity="sha384-Smlep5jCw/wG7hdkwQ/Z5nLIefveQRIY9nfy6xoR1uRYBtpZgI6339F5dgvm/e9B" crossorigin="anonymous">

    <!--CSS -->
    <link rel="stylesheet" type="text/css" href="estilo.css">

    <title>Formulários</title>
  </head>
  <body>
    
    <div class="container">            

      <div class="modal-header">
        <h1>Formulário bootstrap</h1>
      </div>

      <div class="row" id="PrimLinhaForm">
          <div class="col-sm-8">
            <h3>Cadastre-se</h3>
              <form>

                <div class="form-group">
                  <label for="nome">Nome</label>
                  <input type="text" name="" class="form-control" id="nome">
                </div>

                <div class="form-group">
                  <label for="email">E-mail</label>
                  <input type="email" name="" class="form-control" id="email">
                </div>

                <div class="form-group">
                  <label for="senha">Senha</label>
                  <input type="password" name="" class="form-control" id="senha">
                </div>

                <div class="form-check">
                    <input type="checkbox" class="form-check-input" id="aceiteTermo">
                    <label class="form-check-label" for="aceiteTermo">Aceito os termos de serviço.</label>
                 </div>

                 <div class="form-check form-check-inline">
                    <input class="form-check-input" type="radio" name="linguagemP" id="lingPhp" value="php">
                    <label class="form-check-label" for="lingPhp">
                      Php
                    </label>                   
                    </div>

                  <div class="form-check form-check-inline">
                     <input class="form-check-input" type="radio" name="linguagemP" id="lingJava" value="java">
                    <label class="form-check-label" for="lingJava">
                      Java
                    </label>
                  </div>    


                  <button type="submit" class="btn">Cadastrar</button>

              </form>


          </div>

          <div class="col-sm-4">
            <h3>Logar</h3>
          </div>
      </div>


    </div>


    <!-- Optional JavaScript -->
    <!-- jQuery first, then Popper.js, then Bootstrap JS -->
    <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
    <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.2/js/bootstrap.min.js" integrity="sha384-o+RDsa0aLu++PJvFqy8fFScvbHFLtbvScb8AjopnFD+iEQ7wo/CG0xlczd+2O/em" crossorigin="anonymous"></script>
  </body>
</html>

Raw Text