PHP Classes

File: templates/account/signin.html.php

Recommend this page to a friend!
  Classes of Pierre-Henry Soria   GetMeALatte   templates/account/signin.html.php   Download  
File: templates/account/signin.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: 931 bytes
 

Contents

Class file image Download
<div class="center">
    <div class="row">
        <h3 class="blue-text">Sign In</h3>

        <form method="post" action="<?= site_url('/signin') ?>" class="col s12">
            <p class="input-field col s6">
                <i class="material-icons prefix">email</i>
                <input type="email" name="email" id="email" required="required">
                <label for="email">Email:</label>
            </p>

            <p class="input-field col s6">
                <i class="material-icons prefix">password</i>
                <input type="password" name="password" id="password" required="required">
                <label for="password">Password:</label>
            </p>

            <p class="col s12">
                <button type="submit" name="signin_submit" value="1" class="bold btn-large waves-effect">
                    Sign In
                </button>
            </p>
        </form>
    </div>
</div>