]> git.datanom.net - webcal.git/blame_incremental - user_exist_error.php
Initial upload
[webcal.git] / user_exist_error.php
... / ...
CommitLineData
1<?php
2/* $Id$ */
3include_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
28echo $page;
29?>
This page took 0.026767 seconds and 5 git commands to generate.