Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 2

<!

DOCTYPE html>
<html>
<head>

<style type="text/css">

body {
background:#e6e6e6;
background-color:#90EE90;

</style>

</head>
<body>
<?php
include("Menu.php");
?>
<center><h4> Agregar Informacion </h4></center>
<center>
<form action="GuardarCuentas.php" method="POST">

<table>
<tr>
<td><left><h4> Insertar Informacion de la Cuenta</h4></left></td>
</tr>
<tr>
<td><p>Codigo de la Cuenta:</p></td>
<td><input type="text" required name="codigo" placeholder="Codigo de la Cuenta"
value="" /></td>
</tr>
<tr>
<td><p>Nombre de la Cuenta:</p></td>
<td><input type="text"required name="nombre" placeholder="Nombre de la Cuenta"
value="" /></td>
</tr>
<tr>
<td><p>Ciudad:</p></td>
<td><input type="text" required name="ciudad" placeholder="Ciudad" value=""
/></td>
</tr>
<tr>
<td><p>Ciudad de Cobro:</p></td>
<td><input type="text" required name="ciudadCobro" placeholder="Ciudad de Cobro"
value="" /></td>
</tr>
<tr>
<td><p><p>Telefono:</p></p></td>
<td><input type="text" required name="telefono" placeholder="Telefono"
value="" /></td>
</tr>
<tr>
<td><p><p>Correo:</p></p></td>
<td><input type="text" required name="correo" placeholder="Correo" value=""
/></td>
</tr>
<tr>
<td><p><p>Sitio Web:</p></p></td>
<td><input type="text" required name="sitioweb" placeholder="Sitio Web"
value="" /></td>
</tr>
<tr>
<td><p><p>Ocupacion:</p></p></td>
<td><input type="text" required name="ocupacion" placeholder="Ocupacion" value=""
/></td>
</tr>
<tr>
<td><p><p>Direccion:</p></p></td>
<td><input type="text" required name="direccion" placeholder="Direccion" value=""
/></td>
</tr>
<tr>
<td><p><p>Codigo Postal:</p></p></td>
<td><input type="text" required name="codigoPostal" placeholder="Codigo Postal"
value="" /></td>
</tr>
<tr>
<td><a href="index.php">Regresar</a></td>
<td><input type="submit" value="Guardar" /></td>
</tr>
</table>

</form>
</center>

<br/><br/><br/><br/>
<br/><br/>

<?php

include("Pie.php");

?>

</body>
</html>

You might also like