2023-04-27 19:03:28 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en_US">
|
|
|
|
<head>
|
|
|
|
<meta charset='utf-8'>
|
|
|
|
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
|
|
|
|
<title>Page Title</title>
|
|
|
|
<meta name='viewport' content='width=device-width, initial-scale=1'>
|
|
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/water.css@2/out/water.css">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h3 id="form-elements">Form elements</h3>
|
|
|
|
<form method="post" action="/admin/login">
|
|
|
|
<label for="username">Username</label>
|
|
|
|
<input type="text" name="username" id="username" placeholder="username">
|
|
|
|
|
|
|
|
<label for="password">Password</label>
|
|
|
|
<input type="hidden" name="password" id="password" placeholder="password">
|
|
|
|
|
|
|
|
<input type="submit" value="Login">
|
|
|
|
</form>
|
|
|
|
</body>
|
|
|
|
</html>
|