diff --git a/CHANGELOG.md b/CHANGELOG.md index ef0c9491..d658203e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,18 @@ +## Alpha 3 + +!! Please do a complete reinstall, with a new database + +- Finances! The finance portions have been implemented, you can [read about them here](http://docs.phpvms.net/concepts/finances) +- Changed theme system to using [laravel-theme](https://github.com/igaster/laravel-theme), there are changes to making theming much simpler with much more flexibility. +- Fixed several security vulnerabilities (thanks magicflyer!) +- Fuel units changed to lbs/kgs [#193](https://github.com/nabeelio/phpvms/issues/193) +- Airports can be restricted to only hubs on registration/user profile +- Cleaned up a lot unused icons and files [#195](https://github.com/nabeelio/phpvms/issues/195) +- Rank restrictions for PIREPs are respected [#170](https://github.com/nabeelio/phpvms/issues/170) +- API: Added the ability to get/update/delete user bids [#172](https://github.com/nabeelio/phpvms/issues/172) +- Artisan: Added a `phpvms:export [tables]` to export tables to YAML files which can be re-imported using `phpvms:import` +- Numerous bug fixes + ## Alpha 2 (2018-02-23, v7.0.0-alpha2) !! Please do a full reinstall, with recreating the database diff --git a/resources/views/layouts/default/auth/login.blade.php b/resources/views/layouts/default/auth/login.blade.php index 4a2c99ef..5c0619f1 100644 --- a/resources/views/layouts/default/auth/login.blade.php +++ b/resources/views/layouts/default/auth/login.blade.php @@ -1,10 +1,10 @@ -@extends("auth.layout") -@section('title', 'log in') +@extends('auth.layout') +@section('title', 'Log In') @section('content')
-
+ {{ Form::open(['url' => url('/login'), 'method' => 'post']) }}
@@ -15,12 +15,14 @@ - + {{ + Form::text('email', old('email'), [ + 'id' => 'email', + 'placeholder' => 'Email', + 'class' => 'form-control', + 'required' => true, + ]) + }}
@if ($errors->has('email')) @@ -32,12 +34,14 @@ - + {{ + Form::password('password', [ + 'name' => 'password', + 'class' => 'form-control', + 'placeholder' => 'Password', + 'required' => true, + ]) + }}
@if ($errors->has('password')) @@ -59,7 +63,7 @@ Forgot Password?
- + {{ Form::close() }}
@endsection diff --git a/resources/views/layouts/default/auth/passwords/reset.blade.php b/resources/views/layouts/default/auth/passwords/reset.blade.php index 549b6a85..dd84d988 100644 --- a/resources/views/layouts/default/auth/passwords/reset.blade.php +++ b/resources/views/layouts/default/auth/passwords/reset.blade.php @@ -1,4 +1,5 @@ @extends('app') +@section('title', 'Reset Password') @section('content')
@@ -6,11 +7,14 @@
Reset Password
-
-
- {{ csrf_field() }} - + {{ Form::open([ + 'url' => url('/password/reset'), + 'method' => 'post', + 'role' => 'form', + 'class' => 'form-horizontal', + ]) + }}
@@ -61,7 +65,7 @@
- + {{ Form::close() }}