Advertisement
Guest User

Untitled

a guest
Mar 18th, 2019
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <% include partials/head %>
  5. </head>
  6. <body>
  7. <% include partials/menu %>
  8.  
  9. <% if (locals.message) { %>
  10. <p class="text-success"><%= message %> </p>
  11. <a class="btn btn-primary" href="contact" role="button">Volver</a>
  12. <% } else { %>
  13.  
  14. <h1><%= title %></h1>
  15. <!--<a class="btn btn-primary" href="sendmessage" role="button">Link</a>-->
  16. <form action="sendmessage" method="POST">
  17. <div class="form-group">
  18. <label for="exampleInputEmail1">Email address</label>
  19. <input type="email" class="form-control" name="email" id="exampleInputEmail1" aria-describedby="emailHelp" placeholder="Enter email">
  20. <small id="emailHelp" class="form-text text-muted">We'll never share your email with anyone else.</small>
  21. </div>
  22. <button type="submit" class="btn btn-primary">Submit</button>
  23. </form>
  24. <% } %>
  25. <% include partials/scripts %>
  26. </body>
  27. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement