20 lines
542 B
PHP
20 lines
542 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<title>Login</title>
|
|
</head>
|
|
<body>
|
|
|
|
<form action="{{ route('login') }}" method="POST">
|
|
@csrf
|
|
<input type="email" name="email" id="email" placeholder="email">
|
|
|
|
<input type="password" name="password" id="password" placeholder="password">
|
|
<button type="submit">Logar</button>
|
|
</form>
|
|
|
|
</body>
|
|
</html> |