Intro_basicos_HTML_CSS/php/LogIn_Crud/index.html
2020-11-18 02:09:41 -03:00

33 lines
590 B
HTML
Executable File

<!DOCTYPE html>
<html>
<head>
<!-- COMENTARIO EN HTML-->
<title>Login</title>
</head>
<body>
<header>
<link rel="stylesheet" href="estilo.css">
</header>
<nav>
</nav>
<section>
<center>
<form action="login.php" method="POST" >
<br/><br/>
<h2>Formulario de Acceso</h2><br/>
<h3>Nombre:<br/>
<input type="text" name="nombre" /><br/><br/>
Password:<br/>
<input type="password" name="password"/><br/><br/>
<input type="submit" value="enviar" /></h3>
</form>
</center>
</section>
<footer></footer>
</body>
</html>