Skip to content

Commit

Permalink
#2 Create hello.html.hbs
Browse files Browse the repository at this point in the history
Result page where message is rendered after form submit
  • Loading branch information
conorheffron committed Oct 14, 2024
1 parent 441b51f commit b7e5b79
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions rocketapp/templates/hello.html.hbs
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="color-scheme" content="light dark" />
<link rel="stylesheet" href="/public/css/pico.min.css">
<title>Hello {{ name }}!</title>
</head>
<body>
<main class="container">
<dialog open>
<article>
<header>
<a href="/" aria-label="Close" rel="prev"></a>
<p>
<strong>🗓️ {{ message }}!</strong>
</p>
</header>
<p>
Hello {{ name }}
</p>
</article>
</dialog>
</main>
</body>
</html>

0 comments on commit b7e5b79

Please sign in to comment.