Files
kursy-mirror/profile.html
2026-03-10 14:15:31 +01:00

12 lines
218 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>User Profile</title>
</head>
<body>
<h1>Welcome, {{ user.username }}!</h1>
<p>Email: {{ user.email }}</p>
<p>Full name: {{ user.get_full_name }}</p>
</body>
</html>