Removed the html component

This commit is contained in:
Graham Campbell
2015-05-25 19:29:29 +01:00
parent bc11ae6ed6
commit 9bc598d234
4 changed files with 3 additions and 56 deletions

View File

@@ -22,7 +22,6 @@
"php": ">=5.5.9",
"ext-apcu": "*",
"laravel/framework": "~5.0.32",
"illuminate/html": "~5.0.0",
"cachethq/segment": "^2.0",
"doctrine/dbal": "^2.5",
"fideloper/proxy": "^3.0",

48
composer.lock generated
View File

@@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
"This file is @generated automatically"
],
"hash": "c4539fddc4396a0f74d8be16072e7a48",
"hash": "4ba73e822b18d8204512ede891d95d36",
"packages": [
{
"name": "asm89/stack-cors",
@@ -1344,52 +1344,6 @@
],
"time": "2014-10-12 19:18:40"
},
{
"name": "illuminate/html",
"version": "v5.0.0",
"source": {
"type": "git",
"url": "https://github.com/illuminate/html.git",
"reference": "3d1009bb8e0f25720c914af5c1f4015dd373c9ef"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/illuminate/html/zipball/3d1009bb8e0f25720c914af5c1f4015dd373c9ef",
"reference": "3d1009bb8e0f25720c914af5c1f4015dd373c9ef",
"shasum": ""
},
"require": {
"illuminate/http": "~5.0",
"illuminate/session": "~5.0",
"illuminate/support": "~5.0",
"php": ">=5.4.0"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "5.0-dev"
}
},
"autoload": {
"psr-4": {
"Illuminate\\Html\\": ""
},
"files": [
"helpers.php"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Taylor Otwell",
"email": "taylorotwell@gmail.com"
}
],
"time": "2015-01-01 16:31:18"
},
{
"name": "ircmaxell/password-compat",
"version": "v1.0.4",

View File

@@ -134,7 +134,6 @@ return [
'Illuminate\Filesystem\FilesystemServiceProvider',
'Illuminate\Foundation\Providers\FoundationServiceProvider',
'Illuminate\Hashing\HashServiceProvider',
'Illuminate\Html\HtmlServiceProvider',
'Illuminate\Mail\MailServiceProvider',
'Illuminate\Pagination\PaginationServiceProvider',
'Illuminate\Pipeline\PipelineServiceProvider',
@@ -205,7 +204,6 @@ return [
'Eloquent' => 'Illuminate\Database\Eloquent\Model',
'Event' => 'Illuminate\Support\Facades\Event',
'File' => 'Illuminate\Support\Facades\File',
'Form' => 'Illuminate\Html\FormFacade',
'Hash' => 'Illuminate\Support\Facades\Hash',
'Input' => 'Illuminate\Support\Facades\Input',
'Inspiring' => 'Illuminate\Foundation\Inspiring',

View File

@@ -17,15 +17,11 @@
<div class="form-group">
<label class="sr-only">{{ trans('forms.login.email') }}</label>
{!! Form::email('email', Input::old('email'), [
'class' => 'form-control', 'placeholder' => trans('forms.login.email'), 'required' => 'required'
]) !!}
<input class="form-control" placeholder="{{ trans('forms.login.email') }}" required="required" name="email" type="email">
</div>
<div class="form-group">
<label class="sr-only">{{ trans('forms.login.password') }}</label>
{!! Form::password('password', [
'class' => 'form-control', 'placeholder' => trans('forms.login.password'), 'required' => 'required'
]) !!}
<input class="form-control" placeholder="{{ trans('forms.login.password') }}" required="required" name="password" type="password" value="">
</div>
<div class="form-group">
<div class="alert alert-info">{{ trans('forms.login.cookies') }}</div>