422.html 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. <!DOCTYPE html>
  2. <!--
  3. ! Excerpted from "Agile Web Development with Rails",
  4. ! published by The Pragmatic Bookshelf.
  5. ! Copyrights apply to this code. It may not be used to create training material,
  6. ! courses, books, articles, and the like. Contact us if you are in doubt.
  7. ! We make no guarantees that this code is fit for any purpose.
  8. ! Visit http://www.pragmaticprogrammer.com/titles/rails4 for more book information.
  9. -->
  10. <html>
  11. <head>
  12. <title>The change you wanted was rejected (422)</title>
  13. <style type="text/css">
  14. body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
  15. div.dialog {
  16. width: 25em;
  17. padding: 0 4em;
  18. margin: 4em auto 0 auto;
  19. border: 1px solid #ccc;
  20. border-right-color: #999;
  21. border-bottom-color: #999;
  22. }
  23. h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
  24. </style>
  25. </head>
  26. <body>
  27. <!-- This file lives in public/422.html -->
  28. <div class="dialog">
  29. <h1>The change you wanted was rejected.</h1>
  30. <p>Maybe you tried to change something you didn't have access to.</p>
  31. </div>
  32. </body>
  33. </html>