14 lines
399 B
PHP
14 lines
399 B
PHP
|
<?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>
|