%PDF- %PDF-
Direktori : /www/varak.net/paste.varak.net-5.6/app/views/skins/bootstrap/user/ |
Current File : //www/varak.net/paste.varak.net-5.6/app/views/skins/bootstrap/user/forgot.blade.php |
@extends("skins.bootstrap.common.{$container}") @section('body') <section id="forgot"> {{ Form::open(array( 'autocomplete' => 'off', 'role' => 'form' )) }} <div class="row"> <div class="col-sm-8 col-sm-offset-2 col-md-6 col-md-offset-3"> <fieldset> <legend>{{ Lang::get('user.forgot_password') }}</legend> @if ($site->auth->method != 'db') <div class="alert alert-danger"> {{ Lang::get('user.feature_disabled') }} </div> @endif @include('skins.bootstrap.common.alerts') <div class="form-group"> {{ Form::label('username', Lang::get('global.username')) }} {{ Form::text('username', NULL, array( 'class' => 'form-control', 'maxlength' => 50, )) }} <div class="help-block"> {{ Lang::get('user.forgot_exp') }} </div> </div> {{ Form::submit(Lang::get('user.reset_password'), array( 'name' => '_reset', 'class' => 'btn btn-primary', 'disabled' => $site->auth->method != 'db' ?: NULL, )) }} </fieldset> </div> </div> {{ Form::close() }} </section> @stop