From 9b8d1940a1d7e8efffd76e2a3f6352d370294230 Mon Sep 17 00:00:00 2001 From: Camil Staps Date: Tue, 17 Feb 2015 00:06:02 +0100 Subject: Changed to dingo API --- .../php-api/trunk/resources/views/app.blade.php | 62 --------------------- .../trunk/resources/views/auth/login.blade.php | 63 --------------------- .../trunk/resources/views/auth/password.blade.php | 50 ----------------- .../trunk/resources/views/auth/register.blade.php | 65 ---------------------- .../trunk/resources/views/auth/reset.blade.php | 59 -------------------- .../resources/views/emails/password.blade.php | 1 - .../trunk/resources/views/errors/503.blade.php | 41 -------------- .../php-api/trunk/resources/views/home.blade.php | 17 ------ .../php-api/trunk/resources/views/vendor/.gitkeep | 0 .../trunk/resources/views/welcome.blade.php | 46 --------------- 10 files changed, 404 deletions(-) delete mode 100644 backyard/php-api/trunk/resources/views/app.blade.php delete mode 100644 backyard/php-api/trunk/resources/views/auth/login.blade.php delete mode 100644 backyard/php-api/trunk/resources/views/auth/password.blade.php delete mode 100644 backyard/php-api/trunk/resources/views/auth/register.blade.php delete mode 100644 backyard/php-api/trunk/resources/views/auth/reset.blade.php delete mode 100644 backyard/php-api/trunk/resources/views/emails/password.blade.php delete mode 100644 backyard/php-api/trunk/resources/views/errors/503.blade.php delete mode 100644 backyard/php-api/trunk/resources/views/home.blade.php delete mode 100644 backyard/php-api/trunk/resources/views/vendor/.gitkeep delete mode 100644 backyard/php-api/trunk/resources/views/welcome.blade.php (limited to 'backyard/php-api/trunk/resources/views') diff --git a/backyard/php-api/trunk/resources/views/app.blade.php b/backyard/php-api/trunk/resources/views/app.blade.php deleted file mode 100644 index b0b406e..0000000 --- a/backyard/php-api/trunk/resources/views/app.blade.php +++ /dev/null @@ -1,62 +0,0 @@ - - - - - - - Laravel - - - - - - - - - - - - - - @yield('content') - - - - - - diff --git a/backyard/php-api/trunk/resources/views/auth/login.blade.php b/backyard/php-api/trunk/resources/views/auth/login.blade.php deleted file mode 100644 index 344cdbd..0000000 --- a/backyard/php-api/trunk/resources/views/auth/login.blade.php +++ /dev/null @@ -1,63 +0,0 @@ -@extends('app') - -@section('content') -
-
-
-
-
Login
-
- @if (count($errors) > 0) -
- Whoops! There were some problems with your input.

-
    - @foreach ($errors->all() as $error) -
  • {{ $error }}
  • - @endforeach -
-
- @endif - -
- - -
- -
- -
-
- -
- -
- -
-
- -
-
-
- -
-
-
- -
-
- - - Forgot Your Password? -
-
-
-
-
-
-
-
-@endsection diff --git a/backyard/php-api/trunk/resources/views/auth/password.blade.php b/backyard/php-api/trunk/resources/views/auth/password.blade.php deleted file mode 100644 index 6aa19ef..0000000 --- a/backyard/php-api/trunk/resources/views/auth/password.blade.php +++ /dev/null @@ -1,50 +0,0 @@ -@extends('app') - -@section('content') -
-
-
-
-
Reset Password
-
- @if (session('status')) -
- {{ session('status') }} -
- @endif - - @if (count($errors) > 0) -
- Whoops! There were some problems with your input.

-
    - @foreach ($errors->all() as $error) -
  • {{ $error }}
  • - @endforeach -
-
- @endif - -
- - -
- -
- -
-
- -
-
- -
-
-
-
-
-
-
-
-@endsection diff --git a/backyard/php-api/trunk/resources/views/auth/register.blade.php b/backyard/php-api/trunk/resources/views/auth/register.blade.php deleted file mode 100644 index 452c1a7..0000000 --- a/backyard/php-api/trunk/resources/views/auth/register.blade.php +++ /dev/null @@ -1,65 +0,0 @@ -@extends('app') - -@section('content') -
-
-
-
-
Register
-
- @if (count($errors) > 0) -
- Whoops! There were some problems with your input.

-
    - @foreach ($errors->all() as $error) -
  • {{ $error }}
  • - @endforeach -
-
- @endif - -
- - -
- -
- -
-
- -
- -
- -
-
- -
- -
- -
-
- -
- -
- -
-
- -
-
- -
-
-
-
-
-
-
-
-@endsection diff --git a/backyard/php-api/trunk/resources/views/auth/reset.blade.php b/backyard/php-api/trunk/resources/views/auth/reset.blade.php deleted file mode 100644 index 3ebd8de..0000000 --- a/backyard/php-api/trunk/resources/views/auth/reset.blade.php +++ /dev/null @@ -1,59 +0,0 @@ -@extends('app') - -@section('content') -
-
-
-
-
Reset Password
-
- @if (count($errors) > 0) -
- Whoops! There were some problems with your input.

-
    - @foreach ($errors->all() as $error) -
  • {{ $error }}
  • - @endforeach -
-
- @endif - -
- - - -
- -
- -
-
- -
- -
- -
-
- -
- -
- -
-
- -
-
- -
-
-
-
-
-
-
-
-@endsection diff --git a/backyard/php-api/trunk/resources/views/emails/password.blade.php b/backyard/php-api/trunk/resources/views/emails/password.blade.php deleted file mode 100644 index 2030539..0000000 --- a/backyard/php-api/trunk/resources/views/emails/password.blade.php +++ /dev/null @@ -1 +0,0 @@ -Click here to reset your password: {{ url('password/reset/'.$token) }} diff --git a/backyard/php-api/trunk/resources/views/errors/503.blade.php b/backyard/php-api/trunk/resources/views/errors/503.blade.php deleted file mode 100644 index c8d767b..0000000 --- a/backyard/php-api/trunk/resources/views/errors/503.blade.php +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - -
-
-
Be right back.
-
-
- - diff --git a/backyard/php-api/trunk/resources/views/home.blade.php b/backyard/php-api/trunk/resources/views/home.blade.php deleted file mode 100644 index 8f5e705..0000000 --- a/backyard/php-api/trunk/resources/views/home.blade.php +++ /dev/null @@ -1,17 +0,0 @@ -@extends('app') - -@section('content') -
-
-
-
-
Home
- -
- You are logged in! -
-
-
-
-
-@endsection diff --git a/backyard/php-api/trunk/resources/views/vendor/.gitkeep b/backyard/php-api/trunk/resources/views/vendor/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/backyard/php-api/trunk/resources/views/welcome.blade.php b/backyard/php-api/trunk/resources/views/welcome.blade.php deleted file mode 100644 index 7b2750c..0000000 --- a/backyard/php-api/trunk/resources/views/welcome.blade.php +++ /dev/null @@ -1,46 +0,0 @@ - - - - - - - -
-
-
Laravel 5
-
{{ Inspiring::quote() }}
-
-
- - -- cgit v1.2.3