Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kawax/fortify-uikit
https://github.com/kawax/fortify-uikit
Last synced: 21 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/kawax/fortify-uikit
- Owner: kawax
- License: mit
- Created: 2020-09-22T08:14:45.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-09-27T11:01:55.000Z (over 4 years ago)
- Last Synced: 2024-04-19T07:21:06.168Z (8 months ago)
- Language: Blade
- Homepage: https://packagist.org/packages/revolution/fortify-uikit
- Size: 178 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Fortify views for UIkit3
[![Maintainability](https://api.codeclimate.com/v1/badges/0d4e9ba3f10341847cb9/maintainability)](https://codeclimate.com/github/kawax/fortify-uikit/maintainability)
https://getuikit.com/
## Available views
- register
- login
- forgot-password
- reset-password### Unavailable
- verify-email
- confirm-password
- two-factor-challengeThis is an experimental package so not all views are available.
## Requirements
- PHP >= 7.3
- Laravel >= 8.0
- Fortify >= 1.5## Installation
Before install this package, you should install `laravel/fortify` (without Jetstream)
https://github.com/laravel/fortify```
composer require laravel/fortify
php artisan vendor:publish --provider="Laravel\Fortify\FortifyServiceProvider"
php artisan migrate
```Add `App\Providers\FortifyServiceProvider::class,` to `config/app.php`
```
composer require revolution/fortify-uikit
```Add `Fortify::viewPrefix('fortify-uikit::');` to `FortifyServiceProvider@boot`
```php
public function boot()
{
Fortify::viewPrefix('fortify-uikit::');//
}
```## Publish views
```
php artisan vendor:publish --tag=fortify-uikit
```Publish to `/resources/views/vendor/fortify-uikit`
You can customize any files.
## Demo
https://github.com/kawax/fortify-project/tree/uikit## LICENSE
MIT