Loginauth / templates /protected.html
Gregniuki's picture
Update templates/protected.html
3efb9ac
raw
history blame
274 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Protected Route</title>
</head>
<body>
<h1>Protected Route</h1>
<p>Welcome, {{ user.email }}!</p>
</body>
</html>