31 lines
787 B
HTML
31 lines
787 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">
|
|
|
|
<br>
|
|
|
|
<label for="password">Password: </label>
|
|
<input type="password" name="password" value="" placeholder="Type your password">
|
|
|
|
<!-- method -->
|
|
<input type="hidden" name="_method" value="post">
|
|
|
|
<!-- Token -->
|
|
<input type="hidden" name="_token_" value="##TOKEN##">
|
|
|
|
<br>
|
|
|
|
<button type="submit" name="login">Login</button>
|
|
</form>
|
|
</body>
|
|
</html>
|