<!doctype html>
<html lang=
"en"
>
<head>
<meta charset=
"UTF-8"
>
<title>Mentconnect Inc</title>
<script type=
"text/javascript"
src=
"//maxcdn.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"
></script>
<link rel=
"stylesheet"
href=
"//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.min.css"
>
{{HTML::style(
'css/mentconnect.css'
)}}
{{HTML::style(
'css/denied.css'
)}}
</head>
<body>
<header id=
"cta"
class
=
"background-showcase"
>
<div id=
"nv"
class
=
"navbar"
>
<div
class
=
"container"
>
<a
class
=
"navbar-brand"
href=
"/"
>
<div
class
=
"asset logo-white-header"
>
{{ HTML::image(
"images/mentconnect.png"
,
"editor"
,
array
(
"width"
=>
"130px"
,
"height"
=>
"44px"
)) }}
</div>
</a>
<ul
class
=
" nav navbar-nav pull-right"
>
<li
class
>
{{HTML::link(
'partners'
,
'Partners'
) }}
</li>
<li
class
>
{{HTML::link(
'blog'
,
'Blog'
) }}
</li>
<li
class
=
"button"
>
{{HTML::link(
'login'
,
'Sign In'
) }}
</li>
</ul>
</div>
</div>
</header>
<div id=
"signup-content"
>
{{ Form::open(
array
(
'url'
=>
'users/store'
,
'class'
=>
'form-horizontal'
)) }}
<div
class
=
"container padded"
>
<div
class
=
"container"
>
<legend><h2>Sign Up For A Mentconnect Account</h2></legend>
</div>
<div
class
=
"row"
>
<div
class
=
"col-lg-3 col-lg-offset-1"
>
<h3>Be part of the change!</h3>
<p>Learn from experts who care to share. When you are ready, be free to give back by sharing your skills with others.</p>
</div>
<div
class
=
"col-lg-8"
>
<div
class
=
"form-group"
>
<label
for
=
"first"
>First Name</label>
{{Form::text(
'first'
, \Input::old(
'first'
),
array
(
'class'
=>
'form-control form-control-bordered'
,
'tabindex'
=>
'1'
))}} <span
class
=
"pull-right"
>{{
$errors
->first(
'first'
)}}</span>
</div>
<div
class
=
"form-group"
>
<label
for
=
"last"
>Last Name</label>
{{ Form::text(
'last'
, \Input::old(
'last'
),
array
(
'class'
=>
'form-control form-control-bordered'
,
'tabindex'
=>
'2'
)) }} <span
class
=
"pull-right"
> {{
$errors
->first(
'last'
)}}</span>
</div>
<div
class
=
"form-group"
>
<label
for
=
"email"
>Email</label>
{{ Form::email(
'email'
, \Input::old(
'email'
),
array
(
'class'
=>
'form-control form-control-bordered'
,
'tabindex'
=>
'3'
)) }}<span
class
=
"pull-right"
> {{
$errors
->first(
'email'
) }}</span>
</div>
<div
class
=
"form-group"
>
<label
for
=
"password"
>Password</label>
{{Form::password(
'password'
,
array
(
'class'
=>
'form-control form-control-bordered'
,
'tabindex'
=>
'4'
))}} <span
class
=
"pull-right"
> {{
$errors
->first(
'password'
) }}</span>
</div>
<div
class
=
"row"
id=
"signup-bottom-row"
>
<div
class
=
"col-lg-3"
>
{{Form::submit(
'Sign Me Up!'
,
array
(
'class'
=>
'btn btn-success btn-large submit-button'
))}}
<br /><br />
</div>
<div
class
=
"col-lg-5"
>
By clicking
"Sign Me Up"
you agree to our
{{HTML::link(
'tos'
,
'Terms of Service'
) }}
and
{{HTML::link(
'privacy'
,
'Privacy Policy.'
)}}
</div>
</div>
</div>
</div>
</div>
{{ Form::close() }}
</div>
<div id=
"footer"
>
<div id=
"sub-footer"
>
<div
class
=
"container"
>
<div
class
=
"row"
>
<div
class
=
"col-lg-4"
>
<p id=
"copyright-section"
>
Copyright © 2014. Mentconnect Inc. All Rights Reserved.
</p>
</div>
<div
class
=
"col-lg-4"
>
</div>
<div
class
=
"col-lg-4"
>
<p id=
"love"
>
Built With Laravel + Bootstrap Frameworks by Elisha Chirchir.
</p>
</div>
</div>
</div>
</div>
</div>
</body>
</html>