failure.php

 1: <?php
 2: 
 3: 	/*
 4: 	 * You may customize this page with your own failure message.
 5: 	 */
 6: 
 7: ?>
 8: <!DOCTYPE html
 9:      PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
10:      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
11: <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
12: <head>
13: <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
14: <title>Rating Failed</title>
15: <link href="template/styles.css" rel="stylesheet" type="text/css" />
16: </head>
17: <body>
18: 
19: <h1>Ooops...</h1>
20: 
21: <p>There was a problem saving your vote.</p>
22: 
23: <p class="errorMessage">
24: <?php show_error(); ?>
25: </p>
26: 
27: <p><a href="<?php the_return_to_url(); ?>">Go back</a></p>
28: 
29: <?php
30: /* DO NOT ALTER OR REMOVE THE CREDIT BELOW, PER LICENSE! */
31: the_credits();
32: /* END CREDIT */
33: ?>
34: 
35: </body>
36: </html>