OSDN Git Service

基本画面を表示できるように調整
[nucleus-jp/nucleus-next.git] / createaccount.php
index f46ea12..adcc5a4 100644 (file)
-<?php
-/*
- * Nucleus: PHP/MySQL Weblog CMS (http://nucleuscms.org/)
- * Copyright (C) 2002-20011 The Nucleus Group
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- * (see nucleus/documentation/index.html#license for more info)
- */
-
-/**
- * Registration form for new users
- * @license http://nucleuscms.org/license.txt GNU General Public License
- * @copyright Copyright (C) 2002-20011 The Nucleus Group
- * @version $Id: createaccount.php 1624 2012-01-09 11:36:20Z sakamocchi $
- */
-
-       require_once "./config.php";
-       //include $DIR_LIBS."ACTION.php";
-       include_libs('ACTION.php',false,false);
-       
-       if (isset ($_POST['showform']) && $_POST['showform']==1) {
-               $showform = 1;
-       }
-       else {
-               $showform = 0;
-       }
-       sendContentType('text/html', 'createaccount');
-?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-<html>
-<head>
-       <title>Create Member Account</title>
-       <style type="text/css">@import url(nucleus/styles/manual.css);</style>
-</head>
-<body>
-
-       <h1>Create Account</h1>
-
-<?php
-       // show form only if Visitors are allowed to create a Member Account
-       if ($CONF['AllowMemberCreate']==1) { 
-               // if the form is shown the first time no POST data 
-               // will be added as value for the input fields
-               if ($showform==0) {
-?>
-
-       <form method="post" action="createaccount.php">
-
-       <div>
-       <input type="hidden" name="showform" value="1" />
-       <input type="hidden" name="action" value="createaccount" />
-       
-               Login Name (required): 
-               <br />
-               <input name="name" size="32" maxlength="32" /> <small>(only a-z, 0-9)</small>
-               <br />
-               <br />          
-               Real Name (required): 
-               <br />
-               <input name="realname" size="40" />
-               <br />
-               <br />          
-               Email (required):
-               <br />
-               <input name="email" size="40" /> <small>(must be valid, because an activation link will be sent over there)</small>
-               <br />
-               <br />          
-               URL: 
-               <br />
-               <input name="url" size="60" />
-               <br />
-               <?php
-               // add extra fields from Plugins, like NP_Profile
-               $manager->notify('RegistrationFormExtraFields', array('type' => 'createaccount.php', 'prelabel' => '', 'postlabel' => '<br />', 'prefield' => '', 'postfield' => '<br /><br />'));
-               // add a Captcha challenge or something else
-               global $manager;
-               $manager->notify('FormExtra', array('type' => 'membermailform-notloggedin'));
-               ?>
-               <br />
-               <br />                                          
-               <input type="submit" value="Create Account" />
-       </div>
-
-       </form>
-<?php
-               } // close if showfrom ...
-               else {
-               // after the from is sent it will be validated
-               // POST data will be added as value to treat the user with care (;-))
-       
-               $a = new ACTION();
-
-               // if createAccount fails it returns an error message 
-               $message = $a->createAccount();
-
-               echo '<span style="font-weight:bold; color:red;">'.$message.'</span><br /><br />'; 
-?>
-       
-               <form method="post" action="createaccount.php">
-
-       <div>
-       <input type="hidden" name="showform" value="1" />
-       <input type="hidden" name="action" value="createaccount" />
-       
-               Login Name (required): 
-               <br />
-               <input name="name" size="32" maxlength="32" <?php if(isset($_POST['name'])){echo 'value="'.ENTITY::hsc($_POST['name']).'"';}?>/> <small>(only a-z, 0-9)</small>
-               <br />
-               <br />          
-               Real Name (required): 
-               <br />
-               <input name="realname" size="40" <?php if(isset($_POST['realname'])){echo 'value="'.ENTITY::hsc($_POST['realname']).'"';}?>/>
-               <br />
-               <br />          
-               Email (required):
-               <br />
-               <input name="email" size="40" <?php if(isset($_POST['email'])){echo 'value="'.ENTITY::hsc($_POST['email']).'"';}?>/> <small>(must be valid, because an activation link will be sent over there)</small>
-               <br />
-               <br />          
-               URL: 
-               <br />
-               <input name="url" size="60" <?php if(isset($_POST['url'])){echo 'value="'.ENTITY::hsc($_POST['url']).'"';}?>/>
-               <br />
-               <?php
-               // add extra fields from plugin, like NP_Profile
-               $manager->notify('RegistrationFormExtraFields', array('type' => 'createaccount.php', 'prelabel' => '', 'postlabel' => '<br />', 'prefield' => '', 'postfield' => '<br /><br />'));
-               // add a Captcha challenge or something else
-               global $manager;
-               $manager->notify('FormExtra', array('type' => 'membermailform-notloggedin'));
-               ?>
-               <br />
-               <br />
-               <input type="submit" value="Create Account" />
-       </div>
-
-       </form>
-<?php
-               }       // close else showform ...
-
-}
-else { 
-       echo 'Visitors are not allowed to create a Member Account.<br /><br />';
-       echo 'Please contact the website administrator for more information.';
-}
-?>
-       
-       
-</body>
-</html>
\ No newline at end of file
+<?php\r
+/*\r
+ * Nucleus: PHP/MySQL Weblog CMS (http://nucleuscms.org/)\r
+ * Copyright (C) 2002-20011 The Nucleus Group\r
+ *\r
+ * This program is free software; you can redistribute it and/or\r
+ * modify it under the terms of the GNU General Public License\r
+ * as published by the Free Software Foundation; either version 2\r
+ * of the License, or (at your option) any later version.\r
+ * (see nucleus/documentation/index.html#license for more info)\r
+ */\r
+\r
+/**\r
+ * Registration form for new users\r
+ * @license http://nucleuscms.org/license.txt GNU General Public License\r
+ * @copyright Copyright (C) 2002-20011 The Nucleus Group\r
+ * @version $Id: createaccount.php 1624 2012-01-09 11:36:20Z sakamocchi $\r
+ */\r
+\r
+require_once "./config.php";\r
+include_libs('ACTION.php',false,false);\r
+\r
+sendContentType('text/html', 'createaccount');\r
+echo "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\n";\r
+echo "<html>\n";\r
+echo "<head>\n";\r
+echo "<title>Create Member Account</title>\n";\r
+echo "<style type=\"text/css\">@import url(nucleus/styles/manual.css);</style>\n";\r
+echo "</head>\n";\r
+echo "<body>\n";\r
+echo "<h1>Create Account</h1>\n";\r
+\r
+// show form only if Visitors are allowed to create a Member Account\r
+if ( $CONF['AllowMemberCreate'] == 1 )\r
+{\r
+       $name = '';\r
+       $realname ='';\r
+       $email = '';\r
+       $url = '';\r
+       \r
+       /* already submit */\r
+       if ( array_key_exists('showform', $_POST) && $_POST['showform'] == 1 )\r
+       {\r
+               if ( array_key_exists('name', $_POST) )\r
+               {\r
+                       $name = $_POST['name'];\r
+               }\r
+               if ( array_key_exists('realname', $_POST) )\r
+               {\r
+                       $realname = $_POST['realname'];\r
+               }\r
+               if ( array_key_exists('email', $_POST) )\r
+               {\r
+                       $email = $_POST['email'];\r
+               }\r
+               if ( array_key_exists('url', $_POST) )\r
+               {\r
+                       $url = $_POST['url'];\r
+               }\r
+               // after the from is sent it will be validated\r
+               // POST data will be added as value to treat the user with care (;-))\r
+               $a = new Action();\r
+               \r
+               $message = $a->createAccount();\r
+               if ( $message != 1 )\r
+               {\r
+                       echo '<p style="font-weight:bold; color:red;">' . $message . "</p>\n";\r
+               }\r
+               else\r
+               {\r
+                       echo '<p>' . _MSG_ACTIVATION_SENT . "</p>\n"; \r
+                       echo "<p>Return to <a href=\"{$CONF['IndexURL']}\" title=\"{$CONF['SiteName']}\">{$CONF['SiteName']}</a></p>\n";\r
+                       echo "</body>\n";\r
+                       echo "</html>\n";\r
+                       exit;\r
+               }\r
+       }\r
+       \r
+       echo "<form method=\"post\" action=\"createaccount.php\">\n";\r
+       echo "<dl>\n";\r
+       echo "<dt><label for=\"name\">Login Name (required): </label></dt>\n";\r
+       echo "<dd><input id=\"name\"name=\"name\" value=\"{$name}\" size=\"32\" maxlength=\"32\" /><span style=\"\small\">(only a-z, 0-9)</span></dd>\n";\r
+       echo "<dt><label for=\"realname\">Real Name (required): </label></dt>\n";\r
+       echo "<dd><input id=\"realname\" name=\"realname\" value=\"{$realname}\" size=\"40\" /></dd>\n";\r
+       echo "<dt><label for=\"email\">Email (required): </label></dt>\n";\r
+       echo "<dd><input id=\"email\"name=\"email\" value=\"{$email}\" size=\"40\" /><span style=\"\small\">(must be valid, because an activation link will be sent over there)</span></dd>\n";\r
+       echo "<dt><label for=\"url\">URL: </label></dt>\n";\r
+       echo "<dd><input id=\"url\"name=\"url\" value=\"{$url}\" size=\"60\" /></dd>\n";\r
+       echo "<input type=\"hidden\" name=\"showform\" value=\"1\" />\n";\r
+       // add extra fields from Plugins, like NP_Profile\r
+       $manager->notify('RegistrationFormExtraFields', array('type' => 'createaccount.php', 'prelabel' => '', 'postlabel' => '<br />', 'prefield' => '', 'postfield' => '<br /><br />'));\r
+       \r
+       // add a Captcha challenge or something else\r
+       global $manager;\r
+       $manager->notify('FormExtra', array('type' => 'membermailform-notloggedin'));\r
+       echo "<button type=\"submit\" name=\"action\" value=\"createaccount\" />Create Account</button>\n";\r
+       echo "</dl>\n";\r
+       echo "</form>\n";\r
+}\r
+else\r
+{\r
+       echo "<p>\n";\r
+       echo 'Visitors are not allowed to create a Member Account.<br /><br />';\r
+       echo 'Please contact the website administrator for more information.';\r
+       echo "</p>\n";\r
+}\r
+       \r
+echo "</body>\n";\r
+echo "</html>\n";\r