diff --git a/app/controllers/UserController.php b/app/controllers/UserController.php index ac3e5f137a..834c2bb9cb 100644 --- a/app/controllers/UserController.php +++ b/app/controllers/UserController.php @@ -47,8 +47,6 @@ class UserController extends BaseController ]; $result = Auth::attempt($data, $rememberMe); if ($result) { - Session::flash('success', 'Logged in!'); - return Redirect::route('index'); } diff --git a/app/views/user/login.blade.php b/app/views/user/login.blade.php index 07cb41d5db..1c45345465 100644 --- a/app/views/user/login.blade.php +++ b/app/views/user/login.blade.php @@ -1,53 +1,40 @@ @extends('layouts.guest') @section('content') -
-
-

Firefly
- Login -

-
-
-
-
-
+
+
+
+

Firefly III — Sign In

+
+
+ + -
-
{{Form::open()}}
- - +
-
- +

+ +

+
+ @if(Config::get('auth.allow_register') === true) + Register + @endif + Forgot your password? +
{{Form::close()}}
-
-
-

-   -

- @if(Config::get('auth.allow_register') === true) -

- Register a new account -

- @endif -

- Forgot your password? -

- -
- +
@stop \ No newline at end of file diff --git a/app/views/user/register.blade.php b/app/views/user/register.blade.php index ac6764b98e..c067e57389 100644 --- a/app/views/user/register.blade.php +++ b/app/views/user/register.blade.php @@ -1,42 +1,33 @@ @extends('layouts.guest') @section('content')
-
-

Firefly
- Register a new account -

-
-
+
+ -
-
-

-   -

-

- Back to login form -

-

- Reset password -

- -
-
- @stop \ No newline at end of file diff --git a/app/views/user/remindme.blade.php b/app/views/user/remindme.blade.php index 94e8d38e16..5ee87b70e7 100644 --- a/app/views/user/remindme.blade.php +++ b/app/views/user/remindme.blade.php @@ -1,42 +1,27 @@ @extends('layouts.guest') @section('content')
-
-

Firefly
- Forgot your password? -

-
-
- -
-
-
-
- -
-
- {{Form::open()}} -
- - +
+
- - {{Form::close()}}
-
-
-
-

-   -

-

- Back to login form -

-

- Register a new account -

- -
-
- @stop \ No newline at end of file