Files
BugBeGone/views/dashboard.html
T

17 lines
390 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>Dashboard - BugBeGone</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<h3>{{ .username }}</h3>
<h3>{{ .email }}</h3>
<h3>{{ .firstname }} {{ .lastname }}</h3>
<form action="/logout" method="POST">
<button type="submit">Logout</button>
</form>
</body>
</html>