source: extensions/oAuth/include/test/examples/signin_signup/application/views/pages/error.html @ 20293

Last change on this file since 20293 was 20293, checked in by mistic100, 11 years ago

first commit of oAuth plugin, still in developpement

File size: 484 bytes
Line 
1<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2<html lang="en">
3<head>
4<link rel="stylesheet" href="application/public/css.css" type="text/css" >
5</head>
6<body>
7<?php
8        // if we got an error then we display it here
9        if( $error ){
10                echo '<p><h3 style="color:red">Authentication error!</h3>' . $error . '</p>';
11                echo "<pre>Session:<br />" . print_r( $_SESSION, true ) . "</pre><hr />";
12        }
13?> 
14</body>
15</html>
Note: See TracBrowser for help on using the repository browser.