From ffe8c167cb4e5bce6ff2e383e6f2c8779f3efe25 Mon Sep 17 00:00:00 2001 From: Romulus21 Date: Wed, 29 Apr 2020 00:26:29 +0200 Subject: [PATCH] work on todos front --- public/js/app.js.LICENSE.txt | 22 +++++ resources/js/components/InputField.vue | 4 +- resources/js/components/Nav.vue | 4 +- resources/js/views/ToDoLists/ToDo.vue | 53 ++++++++++++ resources/js/views/ToDoLists/ToDoList.vue | 37 +++++---- .../js/views/ToDoLists/ToDoListIndex.vue | 10 ++- resources/sass/components/nav.scss | 2 +- resources/svg/draggable.svg | 7 ++ resources/svg/edit.svg | 6 ++ resources/views/auth/login.blade.php | 81 ++++++++++--------- 10 files changed, 162 insertions(+), 64 deletions(-) create mode 100644 public/js/app.js.LICENSE.txt create mode 100644 resources/js/views/ToDoLists/ToDo.vue create mode 100644 resources/svg/draggable.svg create mode 100644 resources/svg/edit.svg diff --git a/public/js/app.js.LICENSE.txt b/public/js/app.js.LICENSE.txt new file mode 100644 index 0000000..26358a1 --- /dev/null +++ b/public/js/app.js.LICENSE.txt @@ -0,0 +1,22 @@ +/*! + * Vue.js v2.6.11 + * (c) 2014-2019 Evan You + * Released under the MIT License. + */ + +/*! https://mths.be/punycode v1.4.1 by @mathias */ + +/** + * @license + * Lodash + * Copyright OpenJS Foundation and other contributors + * Released under MIT license + * Based on Underscore.js 1.8.3 + * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors + */ + +/** + * vuex v3.1.3 + * (c) 2020 Evan You + * @license MIT + */ diff --git a/resources/js/components/InputField.vue b/resources/js/components/InputField.vue index cb8f3e0..9a11639 100644 --- a/resources/js/components/InputField.vue +++ b/resources/js/components/InputField.vue @@ -1,7 +1,7 @@ diff --git a/resources/js/components/Nav.vue b/resources/js/components/Nav.vue index 8b51647..623ca5a 100644 --- a/resources/js/components/Nav.vue +++ b/resources/js/components/Nav.vue @@ -9,9 +9,9 @@ Memos - + - To Do Lists + ToDo Lists diff --git a/resources/js/views/ToDoLists/ToDo.vue b/resources/js/views/ToDoLists/ToDo.vue new file mode 100644 index 0000000..0000657 --- /dev/null +++ b/resources/js/views/ToDoLists/ToDo.vue @@ -0,0 +1,53 @@ + + + + + diff --git a/resources/js/views/ToDoLists/ToDoList.vue b/resources/js/views/ToDoLists/ToDoList.vue index b4126ce..bea9c08 100644 --- a/resources/js/views/ToDoLists/ToDoList.vue +++ b/resources/js/views/ToDoLists/ToDoList.vue @@ -1,37 +1,42 @@ + + diff --git a/resources/js/views/ToDoLists/ToDoListIndex.vue b/resources/js/views/ToDoLists/ToDoListIndex.vue index 0218f7b..634463e 100644 --- a/resources/js/views/ToDoLists/ToDoListIndex.vue +++ b/resources/js/views/ToDoLists/ToDoListIndex.vue @@ -15,11 +15,13 @@ Add New List -
+
No List Yet
-
- -
+
diff --git a/resources/sass/components/nav.scss b/resources/sass/components/nav.scss index 54b8c8d..02c1948 100644 --- a/resources/sass/components/nav.scss +++ b/resources/sass/components/nav.scss @@ -129,7 +129,7 @@ nav { span { - @apply font-bold text-xl ml-2 overflow-hidden; + @apply font-bold text-xl ml-2 overflow-hidden truncate; transition: width 0.3s; &:hover { diff --git a/resources/svg/draggable.svg b/resources/svg/draggable.svg new file mode 100644 index 0000000..2cb1199 --- /dev/null +++ b/resources/svg/draggable.svg @@ -0,0 +1,7 @@ + + + + + + diff --git a/resources/svg/edit.svg b/resources/svg/edit.svg new file mode 100644 index 0000000..b6b1785 --- /dev/null +++ b/resources/svg/edit.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/resources/views/auth/login.blade.php b/resources/views/auth/login.blade.php index 0c54893..426f9f6 100644 --- a/resources/views/auth/login.blade.php +++ b/resources/views/auth/login.blade.php @@ -1,51 +1,52 @@ @extends('layouts.app') @section('content') -
-
{{ __('Login') }}
-
- @csrf +
+
+
{{ __('Login') }}
+ + @csrf - -
- - @error('email') - - {{ $message }} - - @enderror -
+ +
+ + @error('email') + + {{ $message }} + + @enderror +
- -
- + +
+ - @error('password') - - {{ $message }} - - @enderror -
+ @error('password') + + {{ $message }} + + @enderror +
-
- +
+ - -
- -
- - @if (Route::has('password.request')) - - {{ __('Forgot Your Password?') }} - - @endif -
- + +
+
+ + @if (Route::has('password.request')) + + {{ __('Forgot Your Password?') }} + + @endif +
+ +
@endsection