parking_lot_website/login/index.php

24 lines
826 B
PHP

<!doctype html>
<html>
<head>
<title>Acceso VIP estacionamiento</title>
<meta name="description" content="Our first page">
<meta name="keywords" content="html tutorial template">
<link rel="stylesheet" href="https://cdn.simplecss.org/simple.min.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<h1>Iniciar sesión</h1>
<form method="POST" action="/parking/auth/" name="reg-form">
<label>User</label><br>
<input type="text" name="loginname" pattern="[a-zA-Z0-9]+" required/><br>
<label>Password</label><br>
<input type="password" name="userpassword" required/><br>
<button type="submit" name="register" value="registro">Iniciar sesión</button>
</form>
<p><a href="/web/register/">Registrar usuario frecuente</a></p>
</body>
</html>