Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created September 29, 2020 23:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/26a9d5cb570b1c2f74172337165b8235 to your computer and use it in GitHub Desktop.
Save parzibyte/26a9d5cb570b1c2f74172337165b8235 to your computer and use it in GitHub Desktop.
<?php include_once "encabezado.php"; ?>
<div class="row">
<div class="col-12">
<h1>Registrar videojuego</h1>
<form action="registrar.php" method="POST">
<div class="form-group">
<label for="nombre">Nombre</label>
<input placeholder="Nombre" class="form-control" type="text" name="nombre" id="nombre" required>
</div>
<div class="form-group">
<label for="descripcion">Descripción</label>
<textarea placeholder="Descripción" class="form-control" name="descripcion" id="descripcion" cols="30" rows="10" required></textarea>
</div>
<div class="form-group"><button class="btn btn-success">Guardar</button></div>
</form>
</div>
</div>
<?php include_once "pie.php"; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment