Skip to content

Instantly share code, notes, and snippets.

@kaqfa
Created December 19, 2016 10:34
Show Gist options
  • Save kaqfa/569888708917303508bacd51977e1e6c to your computer and use it in GitHub Desktop.
Save kaqfa/569888708917303508bacd51977e1e6c to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Login Page</title>
</head>
<body style="margin-left: auto; margin-right: auto; padding-top: 20px;">
<form action="process.php" method="post">
<table>
<tr>
<td>Username</td>
<td><input type="text" name="username"></td>
</tr>
<tr>
<td>Password</td>
<td><input type="password" name="password"></td>
</tr>
<tr>
<td>&nbsp;</td>
<td><input type="submit" value="Login" name="btn_submit"></td>
</tr>
</table>
</form>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment