ejercicio7

This commit is contained in:
romeo
2026-06-01 13:55:29 -03:00
parent f86b6dc056
commit 1f6bb5fa62
2 changed files with 64 additions and 1 deletions

View File

@@ -8,7 +8,21 @@
</head>
<body>
<h1>Ejercicio 7</h1>
<form action="">
<label for="input-nombre">Nombre</label>
<input type="text" name="input-nombre" id="input-nombre">
<label for="input-nombre" id="nombre-error" style="color: rgba(238, 21, 21, 0.971);"></label>
<br>
<label for="input-edad">Edad</label>
<input type="number" name="input-edad" id="input-edad">
<label for="input-edad" id="edad-error" style="color: rgba(238, 21, 21, 0.971);"></label>
<br>
<label for="input-password">Password</label>
<input type="password" name="input-password" id="input-password">
<label for="input-password" id="password-error" style="color: rgba(238, 21, 21, 0.971);"></label>
<br>
<input type="submit" value="Enviar">
</form>
<script src="ejercicio7.js"></script>
</body>
</html>