26 lines
761 B
HTML
26 lines
761 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Login</title>
|
|
</head>
|
|
<body>
|
|
<form method="post">
|
|
<h2>Login</h2>
|
|
|
|
<label for="username">Username: </label>
|
|
<input type="text" name="username" value="" placeholder="Type your username">
|
|
<label for="password">Password: </label>
|
|
<input type="password" name="password" value="" placeholder="Type your password">
|
|
|
|
<!-- CSRF Token -->
|
|
<input type="hidden" name="_token_" value="##GENERATED##">
|
|
|
|
<!-- Form type -->
|
|
<input type="hidden" name="_type_" value="post">
|
|
|
|
<button type="submit" name="login">Login</button>
|
|
</form>
|
|
</body>
|
|
</html>
|