login: templating support for warning message
[minimedit.git] / login.inc.php
1 <h2>Inloggen</h2>
2
3 <form action="" method="post">
4         <input id="login" name="login" placeholder="Gebruikersnaam" value="<?php
5                 if (isset($_POST['login'])) print htmlspecialchars($_REQUEST['login']);
6         ?>" />
7         <input id="pass" name="pass" type="password" value="" placeholder="Wachtwoord" />
8         <input type="submit" value="Log in" />
9 </form>