17 lines
382 B
HTML
17 lines
382 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Items on your list</title>
|
|
<meta name="viewpoint" content="width=device-width, initial-scale=1.0">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h2>Welcome to GrocList<h2>
|
|
<br>
|
|
Hello {{ full_name }}
|
|
<p>Click <a href="/list/{{ id }}">List</a> to view shopping list</p>
|
|
<p>Click <a href="/">here</a> to logout. </p>
|
|
</div>
|
|
</body>
|
|
<html>
|