]> git.datanom.net - webcal.git/blob - user_exist_error.php
Initial upload
[webcal.git] / user_exist_error.php
1 <?php
2 /* $Id$ */
3 include_once 'config.inc.php';
4
5 $page = <<<__HTML
6 <?xml version="1.0" encoding="utf-8"?>
7 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
8 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
9 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
10 <head>
11 <title>Web Calendar</title>
12 <link rel="stylesheet" type="text/css" href="css/top_level.css" />
13 <link rel="shortcut icon" href="pixmaps/favicon.ico" />
14 </head>
15 <body>
16 <div id="error_msg">
17 <h1 style="text-align: center">Cannot create user account</h1>
18 <p style="text-align: center">
19 A user with your username already exists.<br/>
20 You should contact your system administrator with this message
21 and inform him or her of your username
22 </p>
23 </div>
24 </body>
25 </html>
26 __HTML;
27
28 echo $page;
29 ?>
This page took 0.064464 seconds and 6 git commands to generate.