18 lines
361 B
PHP
Executable File
18 lines
361 B
PHP
Executable File
<html>
|
|
<head>
|
|
<style>
|
|
html, input{
|
|
font-size: 25px;
|
|
background-color: rgb(30,30,30);
|
|
color: white;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<form method="post" action="manage.php">
|
|
<input type="text" name="username" value="username" />
|
|
<input type="password" name="password" value="password" />
|
|
<input type="submit" value="login" />
|
|
</form>
|
|
</body>
|
|
</html> |