added template files
This commit is contained in:
parent
bda7f2df49
commit
283f091aed
4 changed files with 146 additions and 9 deletions
28
hosts/lab/templates/success.html
Normal file
28
hosts/lab/templates/success.html
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
<!--
|
||||
Default success page shown after a guestbook submission.
|
||||
Copy this file and point BOOK_SUCCESS_TEMPLATE at your copy to customize.
|
||||
|
||||
Available placeholders:
|
||||
|
||||
title - Site title (BOOK_SITE_TITLE).
|
||||
style - Custom CSS (same as the main template).
|
||||
|
||||
Everything else is static — write whatever you want. Use <script> for
|
||||
dynamic behavior like showing the current time.
|
||||
-->
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>{{title}}</title>
|
||||
{{style}}
|
||||
</head>
|
||||
<body>
|
||||
<div class="page-container">
|
||||
Thanks! Your message is pending approval.
|
||||
|
||||
<a href="/">← back</a>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue