Skip to content

Instantly share code, notes, and snippets.

@anir0y
Created February 7, 2022 14:33
Show Gist options
  • Save anir0y/f38d7bc85de2b860c0e2d05907626329 to your computer and use it in GitHub Desktop.
Save anir0y/f38d7bc85de2b860c0e2d05907626329 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login panel</title>
</head>
<body>
<style>
html,body{
color: green;
background-color: black;
font-family: sans-serif;
}
form{
margin-top: calc(20%);
width: 500px;
}
</style>
<center>
<h1>Login panel</h1>
<!-- Login Panel code-->
<form action="#" method="post">
<!--Change method to get/post to see the diffrrent logs in /var/log/apache2/access.log (linux only)-->
<label="username">username:</label>
<input type="text" id="username" name=username value="username"> <br><br>
<label="username">Password:</label>
<input type="password" id="Password" name=password value="" autofill=none> <br><br>
<button type="submit">Login</button>
<button type="reset">Reset</button>
<input type="hidden" id=token name=token value="12345">
</form>
</center>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment