mirror of
https://github.com/CristianCruz0309/proyectos-curso-javascript.git
synced 2026-08-15 02:50:10 +00:00
30 lines
831 B
HTML
30 lines
831 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Empleados</title>
|
|
<link rel="stylesheet" href="styles.css">
|
|
<script src="script.js"></script>
|
|
</head>
|
|
<body>
|
|
<h2>Registro de Empleados</h2>
|
|
<hr>
|
|
<p>Legajo</p>
|
|
<input type="text" id="txtLegajo">
|
|
<p>Nombre</p>
|
|
<input type="text" id="txtNombre">
|
|
<p>Apellido</p>
|
|
<input type="text" id="txtApellido">
|
|
<p>Fecha de nacimiento</p>
|
|
<input type="text" id="txtNacimiento">
|
|
<p>Cargo</p>
|
|
<input type="text" id="txtCargo">
|
|
<br>
|
|
<br>
|
|
<button onclick="agregarEmpleado()">Cargar empleado</button>
|
|
<br>
|
|
<br>
|
|
<button onclick="mostrarEmpleados()">Mostrar empleados</button>
|
|
</body>
|
|
</html> |