parking_lot_website/unused/ejemplo/login.html

37 lines
1.1 KiB
HTML

<!doctype html>
<html>
<head>
<meta charset='utf-8'>
<meta name='viewport' content='width=device-width, initial-scale =1'>
<title>Titulo de pagina </title>
<link rel='stylesheet' type='text/css' href='main.css'>
</head>
<body>
<nav>
<ul>
<li><a href="#"> Home</a></li>
<li><a href="#"> About</a></li>
<li><a href="#"> Sensores</a></li>
<li><a href="#"> GPIO</a></li>
<li><a href="#"> Actuadores</a></li>
</ul>
<ul>
</nav>
<main>
<form>
<label class="title">sistemas embebidos</label>
<div>
<label>username</label>
<input type="text" name="login" required>
</div>
<div>
<label>password</label>
<input type="password" name="passwd" required>
</div>
<button type="submit" name="register">Registro</button>
</form>
</main>
</body>
</html>