Skip to content

Instantly share code, notes, and snippets.

@slick2
Created May 22, 2018 14:07
Show Gist options
  • Save slick2/ee4b7d26628bd2de177ec501319d29d9 to your computer and use it in GitHub Desktop.
Save slick2/ee4b7d26628bd2de177ec501319d29d9 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>Login</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="frm">
<form action="process.php" method="POST">
<p>
<label>Username:</label>
<input type="text" id="user" name="username" />
</p>
<p>
<label>Password:</label>
<input type="text" id="pass" name="password">
</p>
<p>
<input type="submit" id="btn" value="Login">
</p>
</form>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment