Skip to content

Instantly share code, notes, and snippets.

@PrivateGER
Created October 26, 2017 18:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PrivateGER/316236e6fb48d208888125cd0db4cb56 to your computer and use it in GitHub Desktop.
Save PrivateGER/316236e6fb48d208888125cd0db4cb56 to your computer and use it in GitHub Desktop.
Easy Coding - Simple Login HTML
<!DOCTYPE html>
<html>
<head>
<title>My beautiful login!</title>
</head>
<body>
<form action="authenticate.php" method="post">
<input type="text" name="username" required>
<input type="password" name="password" required>
<button type="submit">Login</button>
</form>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment