Esempio n. 1
0
    function displaySignupForm($error = null)
    {
        ?>
        <div id="content">
        <h1>Sign up</h1>
		<p>
		Sign up for all Freemap services: 
		<a href='http://www.free-map.org.uk'>Freemap</a>,
		<a href='http://www.fixmypaths.org'>FixMyPaths</a> and
		<a href='http://www.opentrailview.org'>OpenTrailView</a>.
		</p>
		<p><strong>IMPORTANT!</strong> Please do NOT use the same password
		as you use for security-critical services such as online banking,
		social networks, email etc. Freemap does not currently use an SSL
		server which means the security of your password cannot be
		guaranteed. Therefore please use a UNIQUE password for Freemap.</p>
        <p>Your email is used to send a confirmation message to you, once you
        have signed up. This message will consist of a link,
		to activate your account, which you should follow.
        Your email is NOT used for marketing or other similar activities!</p>
        <?php 
        UserView::showSignupError($error);
        ?>
        <div>
        <form method="post" action=
        "<?php 
        echo $this->ctrlScript;
        ?>
?action=signup">
        <label for="username">Enter a username</label><br/>
        <input name="username" id="username" /> <br/>
        <label for="password">Enter a password</label> <br/>
        <input name="password" id="password" type="password" /> <br/>
        <label for="email">Enter your email</label> <br/>
        <input name="email" id="email" /> <br/>
        <input type='submit' value='go'/>
        </form>
        </div>
        </div>
        <?php 
    }
Esempio n. 2
0
    function displaySignupForm($error = null)
    {
        ?>
        <div id="content">
        <h1>Sign up</h1>
        <p><strong>IMPORTANT!</strong> Please do NOT use the same password
        as you use for security-critical services such as online banking,
        social networks, email etc. The site does not currently use an SSL
        server which means the security of your password cannot be
        guaranteed. Therefore please use a UNIQUE password.</p>
        <?php 
        UserView::showSignupError($error);
        ?>
        <div>
        <form method="post" action=
        "<?php 
        echo $this->ctrlScript;
        ?>
?action=signup">
        <label for="username">Enter a username</label><br/>
        <input name="username" id="username" /> <br/>
        <label for="password">Enter a password</label> <br/>
        <input name="password" id="password" type="password" /> <br/>
        <input type='submit' value='go'/>
        </form>
        </div>
        </div>
        <?php 
    }