<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=0.5"> <link rel="stylesheet" href="styles.css"> <script type="module" src="script.js"></script> <link rel="shortcut icon" type="image/jpg" href="pug.png"/> <title>Doggo Pooper Eliminater</title> </head> <body> <nav> {{^private}} <a href='login'>Login</a> <a href='signup'>Signup</a> {{/private}} {{#private}} <a href='account'> <img src='{{avatar}}'> </a> <a onclick='logout()'>Logout</a> {{/private}} </nav> <main> <div> <h1> Doggo Pooper Eliminater </h1> <h2> An AI powered robot that follows your dog and collects its waste. </h2> </div> </main> <footer> © 2021 The Doggo Group </footer> </body> </html>