Skip to content

Instantly share code, notes, and snippets.

@GreyHat147
Created August 20, 2018 23:24
Show Gist options
  • Save GreyHat147/45d3f9597f7eb44c235e78bf2954dcac to your computer and use it in GitHub Desktop.
Save GreyHat147/45d3f9597f7eb44c235e78bf2954dcac to your computer and use it in GitHub Desktop.
mockup form
<!DOCTYPE html>
<html lang="en">
<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>Document</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.2/css/bootstrap.min.css" integrity="sha384-Smlep5jCw/wG7hdkwQ/Z5nLIefveQRIY9nfy6xoR1uRYBtpZgI6339F5dgvm/e9B" crossorigin="anonymous">
</head>
<body>
<div style="margin-top: 30px; margin-bottom: 50px" class="container">
<div class="row">
<div class="col-md-12">
<div class="form-group">
<input type="text" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp">
<br>
<button type="button" class="btn btn-info">Buscar</button>
</div>
</div>
</div>
<br>
<div class="row">
<div class="col-md-6 offset-3">
<form>
<div class="form-group">
<label for="exampleInputEmail1">Nombre</label>
<input type="text" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp">
</div>
<div class="form-group">
<label for="exampleInputPassword1">apellido</label>
<input type="text" class="form-control" id="exampleInputPassword1">
</div>
<div class="form-group">
<label for="exampleFormControlSelect1">Tipo de documento</label>
<select class="form-control" id="exampleFormControlSelect1">
<option>Tarjeta de identidad</option>
<option>Cedula de ciudadania</option>
<option>Cedula de extranjeria</option>
</select>
</div>
<div class="form-group">
<label for="exampleInputPassword1">Numero de documento</label>
<input type="number" class="form-control" id="exampleInputPassword1">
</div>
<div class="form-group">
<label for="exampleFormControlSelect1">Sexo</label>
<select class="form-control" id="exampleFormControlSelect1">
<option>Masculino</option>
<option>Femenino</option>
</select>
</div>
<div class="form-group">
<label for="exampleInputPassword1">Fecha de nacimiento</label>
<input type="date" class="form-control" id="exampleInputPassword1">
</div>
<div class="form-group">
<label for="exampleInputPassword1">Direccion</label>
<input type="text" class="form-control" id="exampleInputPassword1">
</div>
<div class="form-group">
<label for="exampleInputPassword1">Telefono</label>
<input type="tel" class="form-control" id="exampleInputPassword1">
</div>
<div class="form-group">
<label for="exampleInputPassword1">Email</label>
<input type="email" class="form-control" id="exampleInputPassword1">
</div>
<button type="submit" class="btn btn-primary">Guardar</button>
<button type="button" class="btn btn-warning">Cancelar</button>
<button type="button" class="btn btn-danger">Eliminar</button>
</form>
</div>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment