-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Result page where message is rendered after form submit
- Loading branch information
1 parent
441b51f
commit b7e5b79
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |