Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save GreyHat147/dead9effe2a1de750b6ada37ed1ca097 to your computer and use it in GitHub Desktop.
Save GreyHat147/dead9effe2a1de750b6ada37ed1ca097 to your computer and use it in GitHub Desktop.
index.html
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Actividad</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.3/css/bootstrap.min.css" integrity="sha384-Zug+QiDoJOrZ5t4lssLdxGhVrurbmBWopoEl+M6BdEfwnCJZtKxi1KgxUyJq13dy" crossorigin="anonymous">
</head>
<body>
<div class="jumbotron jumbotron-fluid">
<div class="container">
<h3 class="display-4">Registro de usuarios</h3>
</div>
</div>
<div class="row">
<div class="col-md-8 offset-2">
<form action="actividad.php" method="post">
<div class="form-group">
<label for="exampleInputEmail1">Usuario</label>
<input type="text" name="username" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp" placeholder="Ingrese el nombre del usuario">
</div>
<div class="form-group">
<label for="exampleInputPassword1">Contraseña</label>
<input type="password" name="password" class="form-control" id="exampleInputPassword1" placeholder="Password">
</div>
<button type="submit" class="btn btn-primary">Enviar</button>
</form>
</div>
</div>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.3/js/bootstrap.min.js" integrity="sha384-a5N7Y/aK3qNeh15eJKGWxsqtnX/wWdSZSKp+81YjTmS15nvnvxKHuzaWwXHDli+4" crossorigin="anonymous"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment