ispt4.0_laravel/resources/views/auth/login.blade.php
2023-04-19 22:01:05 +01:00

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>