PHP Classes

File: templates/account/signup.html.php

Recommend this page to a friend!
  Classes of Pierre-Henry Soria   GetMeALatte   templates/account/signup.html.php   Download  
File: templates/account/signup.html.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: GetMeALatte
Promote a product to be sold to a crowd
Author: By
Last change:
Date: 1 year ago
Size: 1,000 bytes
 

Contents

Class file image Download
<div class="center">
    <h3 class="underline blue-text">
        Sign Up for Free Today ?
    </h3>

    <div class="row">
        <form method="post" action="<?= site_url('/signup') ?>" class="col s12">
            <p class="input-field">
                <input type="text" name="name" id="name" required="required">
                <label for="name">Name:</label>
            </p>

            <p class="input-field">
                <input type="email" name="email" id="email" required="required">
                <label for="email">Email:</label>
            </p>

            <p class="input-field">
                <input type="password" name="password" id="password" required="required">
                <label for="password">Password:</label>
            </p>

            <p>
                <button type="submit" name="signup_submit" value="1" class="bold btn-large waves-effect">
                    Sign Up
                </button>
            </p>
        </form>
    </div>
</div>