parking_lot_website/login/index.php

21 lines
655 B
PHP

<!doctype html>
<html>
<head>
<title>Acceso VIP estacionamiento</title>
<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>
</body>
</html>