<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta charset="UTF-8">
<title>NEEMA OPTICIANS LTD</title>
<link href="{{ asset('css/bootstrap.min.css') }}" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="{{ asset('jquery-easyui-1.9.15/themes/bootstrap/easyui.css') }}">
<link rel="stylesheet" type="text/css" href="{{ asset('jquery-easyui-1.9.15/themes/icon.css') }}">
<link rel="stylesheet" type="text/css" href="{{ asset('jquery-easyui-1.9.15/demo/demo.css') }}">
<script type="text/javascript" src="{{ asset('jquery-easyui-1.9.15/jquery.min.js') }}"></script>
<script type="text/javascript" src="{{ asset('jquery-easyui-1.9.15/jquery.easyui.min.js') }}"></script>
<link rel='stylesheet' type='text/css' href="{{ asset('fonts/Amaranth/amaranth.css') }}" >
<link rel="stylesheet" type="text/css" href="{{ asset('fontawesome/css/all.css') }}">
<link rel="stylesheet" type="text/css" href="{{ asset('css/login.css') }}">
<link rel="stylesheet" type="text/css" href="{{ asset('css/style.css') }}">
</head>
<style type="text/css">
#formdiv{
background: none repeat scroll 0% 0% #F2F2F2;
width: 400px;
margin-left: 19%;
margin-top: -40px;
}
.form{
text-align: center;
min-height: 420px;
}
.form input, .form select {
margin: 15px 0 0;
}
.form-control {
border-radius: 0px;
height: 40px;
}
</style>
<body>
<div class="login-page">
<div class="row">
<div class="col-lg-12 ">
{% for message in app.flashes('warning') %}
<div class="alert alert-warning alert-dismissible show" role="alert">
<strong>Warning</strong> {{ message }}
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
{% endfor %}
{% for message in app.flashes('error') %}
<div class="alert alert-danger alert-dismissible show" role="alert">
<strong>Error!</strong> {{ message }}
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
{% endfor %}
{% for message in app.flashes('success') %}
<div class="alert alert-success show" role="alert">
<strong>Success!</strong> {{ message }}
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
{% endfor %}
</div>
</div>
<div class="form">
<div style="">
<img id="profile-img" class="profile-img-card" src="{{ asset('img/neema_opticians.png') }}" />
<h2 style="font-family: Amaranth,serif;">SIGN UP</h2>
</div>
{{ form_start(form, {'attr':{'id':'login','class':'login-form'}}) }}
{{ form_widget(form.phone,{'attr':{'class':'form-control','placeholder':'phone number' }} ) }}
<div class="error" style="text-align: left; font-size: 12px; line-height: normal; ">
{{ form_errors(form.phone) }}
</div>
{{ form_widget(form.password.first,{'attr':{'class':'form-control','placeholder':'password' }} ) }}
{{ form_widget(form.password.second,{'attr':{'class':'form-control','placeholder':'repeat password' }} ) }}
<div class="error" style="text-align: left; font-size: 12px; line-height: normal; ">
{{ form_errors(form.password.first) }}
</div>
<input type="submit" class="btn btn-success" id="submit" name="submit" value="SIGN UP" />
<div class="error">
{# <div class="alert alert-danger">{{ form_errors(form) }}</div>#}
</div>
{{ form_end(form) }}
<div id="poweredby">
powered by <span>©ohau technologies,ltd</span>
</div>
</div>
</div>
</body>
</html>