Put together UI for the sign in page
Added a blurb about the terms on the join page
This commit is contained in:
parent
446b128137
commit
096ea31a5f
2 changed files with 28 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
<form role="form" class="row col-xs-12 col-sm-6 col-sm-offset-3" method="post">
|
||||
<h1>Sign up</h1>
|
||||
<h1>Sign up <small>Fast and free!</small></h1>
|
||||
<?php
|
||||
echo $this->html->div(
|
||||
array('class' => 'form-group'),
|
||||
|
@ -22,6 +22,6 @@
|
|||
))
|
||||
);
|
||||
?>
|
||||
|
||||
<p>By signing up you are agreeing to our <a href="/legal/terms">Terms of Service</a> and <a href="/legal/privacy">Privacy Policy</a>.</p>
|
||||
<button type="submit" class="btn btn-success btn-lg">Make it so!</button>
|
||||
</form>
|
||||
|
|
|
@ -0,0 +1,26 @@
|
|||
<form role="form" class="row col-xs-12 col-sm-6 col-sm-offset-3" method="post">
|
||||
<h1>Sign in <small>Welcome back!</small></h1>
|
||||
<?php
|
||||
echo $this->html->div(
|
||||
array('class' => 'form-group'),
|
||||
$this->html->inputEmail(array(
|
||||
'label' => 'Email Address',
|
||||
'name' => 'email',
|
||||
'class' => 'form-control input-lg email required',
|
||||
'placeholder' => 'Enter your email',
|
||||
))
|
||||
);
|
||||
|
||||
echo $this->html->div(
|
||||
array('class' => 'form-group'),
|
||||
$this->html->inputPassword(array(
|
||||
'label' => 'Password',
|
||||
'name' => 'password',
|
||||
'class' => 'form-control input-lg required',
|
||||
'minlength' => 8,
|
||||
'placeholder' => 'Enter your password',
|
||||
))
|
||||
);
|
||||
?>
|
||||
<button type="submit" class="btn btn-success btn-lg">Authenticate</button>
|
||||
</form>
|
Loading…
Add table
Add a link
Reference in a new issue