Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#3 - User Authentication #18

Merged
merged 34 commits into from
Dec 12, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
1b1ee3d
- setup
EwelinaSkrzypacz Nov 13, 2024
b5a0da2
- setup
EwelinaSkrzypacz Nov 13, 2024
c4da86b
- setup
EwelinaSkrzypacz Nov 13, 2024
abaa402
- setup
EwelinaSkrzypacz Nov 13, 2024
fe63b7b
- setup
EwelinaSkrzypacz Nov 13, 2024
05ef62d
- setup
EwelinaSkrzypacz Nov 13, 2024
ccef105
- setup
EwelinaSkrzypacz Nov 13, 2024
b419468
- delete .env
EwelinaSkrzypacz Nov 26, 2024
0db10d2
- add newlines
EwelinaSkrzypacz Nov 26, 2024
80f4fcb
solved .env
Silabalkan Nov 26, 2024
a19d841
test commit
Silabalkan Nov 26, 2024
ca2d6bc
user registration created
Silabalkan Dec 2, 2024
faf1dfd
- fixed errors
EwelinaSkrzypacz Dec 2, 2024
83c6e61
registration/login are created succesfuly
Silabalkan Dec 2, 2024
637063d
- fixed errors with register; rollback previous changes because they …
EwelinaSkrzypacz Dec 2, 2024
bc8387e
solved conflicts
Silabalkan Dec 2, 2024
9cbb2bd
Remove .env file from version control
Silabalkan Dec 2, 2024
c19f8d7
cs fix
Silabalkan Dec 2, 2024
a5cac1c
- lint fix; added lintf to make fix command
EwelinaSkrzypacz Dec 2, 2024
17245b5
- trying to fix .env.ci
EwelinaSkrzypacz Dec 2, 2024
768c04d
- trying to fix .env.ci
EwelinaSkrzypacz Dec 2, 2024
6e138ad
- fix database credentials
EwelinaSkrzypacz Dec 3, 2024
43f2655
- fix tests
EwelinaSkrzypacz Dec 3, 2024
0b6d43f
- cs fix
EwelinaSkrzypacz Dec 3, 2024
cad9b05
- fix factory
EwelinaSkrzypacz Dec 3, 2024
83123ab
The last line in the .gitignore file was removed
Silabalkan Dec 3, 2024
21a737d
The .gitignore file has been fixed
Silabalkan Dec 3, 2024
2646019
Fix coding style issues
Silabalkan Dec 3, 2024
1385afb
The errors on GitHub have been fixed
Silabalkan Dec 4, 2024
76bcc43
Fix: Addressed review comments
Silabalkan Dec 5, 2024
3fac8f8
The code design issues have been resolved
Silabalkan Dec 6, 2024
804cfbb
removed empty lin
Silabalkan Dec 6, 2024
2b9e073
fixed empty line error
Silabalkan Dec 6, 2024
04ae8aa
- trying to fix errors
EwelinaSkrzypacz Dec 12, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"laravel/framework": "^11.25.0",
"laravel/sanctum": "^4.0",
"laravel/tinker": "^2.10.0",
"symfony/mailer": "~7.1.0",
"tightenco/ziggy": "^2.0"
},
"require-dev": {
Expand Down
68 changes: 34 additions & 34 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

33 changes: 12 additions & 21 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
"@tailwindcss/typography": "^0.5.15",
"laravel-vite-plugin": "^1.0.5",
"lodash": "^4.17.21",
"tailwindcss": "^3.4.13",
"vue": "^3.5.10"
},
"devDependencies": {
Expand All @@ -32,7 +31,7 @@
"eslint-plugin-tailwindcss": "^3.17.4",
"eslint-plugin-vue": "^9.28.0",
"postcss": "^8.4.31",
"tailwindcss": "^3.2.1",
"tailwindcss": "^3.4.16",
EwelinaSkrzypacz marked this conversation as resolved.
Show resolved Hide resolved
"typescript": "^5.7.2",
"vite": "^5.4.8",
"vue": "^3.4.0",
Expand Down
2 changes: 2 additions & 0 deletions resources/js/Components/Checkbox.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ const props = defineProps({
required: true,
},
value: {
type: [String, Number, Boolean, Object, Array],
default: null,
},
})
Expand All @@ -32,3 +33,4 @@ const proxyChecked = computed({
class="rounded border-gray-300 text-indigo-600 shadow-sm focus:ring-indigo-500"
>
</template>

6 changes: 4 additions & 2 deletions resources/js/Components/Dropdown.vue
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,14 @@
@click="open = false"
>
<div
class="rounded-md ring-1 ring-black ring-opacity-5"
:class="contentClasses"
class="rounded-md ring-1 ring-black ring-opacity-[0.05]"

Check warning on line 76 in resources/js/Components/Dropdown.vue

View workflow job for this annotation

GitHub Actions / Test & lint JS codebase

Expected indentation of 10 spaces but found 12 spaces

Check warning on line 76 in resources/js/Components/Dropdown.vue

View workflow job for this annotation

GitHub Actions / Test & lint JS codebase

The arbitrary class 'ring-opacity-[0.05]' could be replaced by 'ring-opacity-5'
:class="contentClasses"

Check warning on line 77 in resources/js/Components/Dropdown.vue

View workflow job for this annotation

GitHub Actions / Test & lint JS codebase

Expected indentation of 10 spaces but found 12 spaces
>
<slot name="content" />
</div>

Check warning on line 80 in resources/js/Components/Dropdown.vue

View workflow job for this annotation

GitHub Actions / Test & lint JS codebase

Expected 1 line break before closing tag (`</div>`), but 2 line breaks found

</div>
</Transition>
</div>
</template>

2 changes: 2 additions & 0 deletions resources/js/Components/InputError.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
defineProps({
message: {
type: String,
required: true,
},
})
</script>
Expand All @@ -13,3 +14,4 @@ defineProps({
</p>
</div>
</template>

1 change: 1 addition & 0 deletions resources/js/Components/InputLabel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
defineProps({
value: {
type: String,
default: '',
},
})
</script>
Expand Down
3 changes: 3 additions & 0 deletions resources/js/Pages/Auth/ForgotPassword.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import { Head, useForm } from '@inertiajs/vue3'
defineProps({
status: {
type: String,
default: '',
},
})

Expand All @@ -21,6 +22,8 @@ const submit = () => {
}
</script>



EwelinaSkrzypacz marked this conversation as resolved.
Show resolved Hide resolved
<template>
<GuestLayout>
<Head title="Forgot Password" />
Expand Down
2 changes: 2 additions & 0 deletions resources/js/Pages/Auth/Login.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ defineProps({
},
status: {
type: String,
default: '',
},
})

Expand All @@ -29,6 +30,7 @@ const submit = () => {
}
</script>


EwelinaSkrzypacz marked this conversation as resolved.
Show resolved Hide resolved
<template>
<GuestLayout>
<Head title="Log in" />
Expand Down
Loading
Loading