This commit is contained in:
4d696e6820427569
2020-12-08 18:47:32 +07:00
commit d72e85376d
7 changed files with 227 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
<?php
echo "<html>";
echo "<head>";
echo "<link rel='stylesheet' type='text/css' href='styles.css' />";
echo "</head>";
echo "<body>";
echo "<h3>Login</h3>";
echo "<div class='generalBox inputFields'>";
echo "<form method='post' autocomplete='off' action='controller.php'>";
echo "<input id='userName' type='text' name='userName' placeholder='Username'><br>";
echo "<input id='password' type='password' name='password' placeholder='Password'><br><br>";
echo "<input type='submit' value='Login'>";
echo "</form>";
echo "</div>";
echo "</body>";
echo "</html>";
?>