26 lines
767 B
PHP
26 lines
767 B
PHP
<?php include("../includes/_config.php")?>
|
|
|
|
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<?php include("../includes/_head.php")?>
|
|
</head>
|
|
<body>
|
|
<?php include("../includes/_navbar.php")?>
|
|
<div class="container main">
|
|
<p class="display-1">Registrar Alumno</p>
|
|
<form action="register_post.php" method="post">
|
|
<div class="form-group">
|
|
<label for="rut">Rut</label>
|
|
<input type="text" class="form-control" id="rut" name="rut">
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="nombre">Nombre</label>
|
|
<input type="text" class="form-control" id="nombre" name="nombre">
|
|
</div>
|
|
<input type="submit" class="btn btn-primary" value="Enviar">
|
|
</form>
|
|
</div>
|
|
<?php include("../includes/_scripts.php")?></body>
|
|
</html>
|