TAS-ALFA/admin-zone/login.php

14 lines
399 B
PHP
Raw Normal View History

2018-11-11 11:05:38 +01:00
<?php
include "logincheck.php";
?>
<html>
<body>
<form action="" method="POST" style="text-align:center;">
<p>Login: <input type="text" placeholder="Login" id="user" name="user"></p>
<p>Hasło: <input type="text" placeholder="Hasło" id="password" name="password"></p>
<input type="submit" value="Login" name="submitas" />
<span><?php echo $error; ?></span>
</form>
</body>