From 7819743439a0e373f9cc1901fd1a33a252816dbe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Abra=C3=A3o=20Barbosa?= Date: Thu, 24 Mar 2022 21:30:18 -0300 Subject: [PATCH] add btns de dimencoes do pad --- app/Http/Controllers/PADController.php | 5 + public/css/forms.css | 31 +++++ resources/views/pad/anexo.blade.php | 173 +++++++++++++++++++++++++ resources/views/pad/index.blade.php | 172 ++++-------------------- routes/web.php | 2 +- 5 files changed, 235 insertions(+), 148 deletions(-) create mode 100644 resources/views/pad/anexo.blade.php diff --git a/app/Http/Controllers/PADController.php b/app/Http/Controllers/PADController.php index a3cf726..15d412e 100644 --- a/app/Http/Controllers/PADController.php +++ b/app/Http/Controllers/PADController.php @@ -34,6 +34,11 @@ class PADController extends Controller return view('pad.create', ['index_menu' => 1 ]); } + public function anexo() + { + return view('pad.anexo', ['index_menu' => 1 ]); + } + /** * Store a newly created resource in storage. * diff --git a/public/css/forms.css b/public/css/forms.css index af13951..1c5500e 100644 --- a/public/css/forms.css +++ b/public/css/forms.css @@ -38,3 +38,34 @@ padding: 50px; margin: 1em auto 1em auto; } + + +/* Buttons PAD */ +.btn-pad-dimensao{ + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + background: #eeeeee; + border-radius: 1em; + width: 150px; + margin: .2em; + padding: .2em; + -webkit-box-shadow: 0px 0px 2px 0px rgba(50, 50, 50, 0); + -moz-box-shadow: 0px 0px 2px 0px rgba(50, 50, 50, 0); + box-shadow: 0px 0px 2px 0px rgba(50, 50, 50, 0); +} + +.btn-pad-dimensao i{ + font-size:2em; + color: #000000!important; +} + +.btn-pad-dimensao h2{ + margin-top: .3em; + color: #000000!important; +} + +.btn-pad-dimensao:hover{ + background: #dddddd; +} \ No newline at end of file diff --git a/resources/views/pad/anexo.blade.php b/resources/views/pad/anexo.blade.php new file mode 100644 index 0000000..65291c2 --- /dev/null +++ b/resources/views/pad/anexo.blade.php @@ -0,0 +1,173 @@ +@extends('layouts.main') + +@section('title', 'Unidade') +@section('header') + @include('layouts.header', [ + 'user' => Auth::user(), + ]) +@endsection +@section('nav') + @include('layouts.navigation', [ + 'index_menu' => $index_menu, + ]) +@endsection +@section('body') +
+
+

PLANO DE ATIVIDADES DOCENTES (PAD)

+

ANEXO B

+

+ Insira os dados correspondentes nos campos exibidos abaixo +

+
+ +
+
+
+ + +
+
+ + +
+
+
+
+ + +
+
+
+ + +
+
+
+
+ + +
+
+
+
+
+ + +
+
+ + +
+ +
+ + +
+
+ + +
+
+ + +
+
+ +
+
+

AFASTAMENTO TOTAL?

+
+ + +
+
+ + +
+
+ +
+ PORTARIA DE AFASTAMENTO: +
+ + +
+
+ +
+

AFASTAMENTO PARCIAL?

+
+ + +
+
+ + +
+
+ +
+ PORTARIA DE AFASTAMENTO: +
+ + +
+
+
+
+
+
+ +
+
+ +
+
+ + +@endsection diff --git a/resources/views/pad/index.blade.php b/resources/views/pad/index.blade.php index 65291c2..22f6040 100644 --- a/resources/views/pad/index.blade.php +++ b/resources/views/pad/index.blade.php @@ -15,159 +15,37 @@

PLANO DE ATIVIDADES DOCENTES (PAD)

-

ANEXO B

+

ANEXO B +

Insira os dados correspondentes nos campos exibidos abaixo

- -
-
-
- - -
-
- - -
-
-
-
- - -
-
-
- - -
-
-
-
- - -
-
-
-
-
- - -
-
- - -
- -
- - -
-
- - -
-
- - -
-
- -
-
-

AFASTAMENTO TOTAL?

-
- - -
-
- - -
-
- -
- PORTARIA DE AFASTAMENTO: -
- - -
-
- -
-

AFASTAMENTO PARCIAL?

-
- - -
-
- - -
-
- -
- PORTARIA DE AFASTAMENTO: -
- - -
-
-
-
-
- + @endsection diff --git a/routes/web.php b/routes/web.php index d60feb4..7c723e4 100644 --- a/routes/web.php +++ b/routes/web.php @@ -50,7 +50,7 @@ Route::post('/pad/store', [PADController::class, 'store'])->name('pad_store'); Route::get('/pad/edit/{id}', [PADController::class, 'edit'])->name('pad_edit'); Route::post('/pad/update/{id}', [PADController::class, 'update'])->name('pad_update'); Route::delete('/pad/delete/{id}', [PADController::class, 'destroy'])->name('pad_delete'); - +Route::get('/pad/anexo', [PADController::class, 'anexo'])->name('pad_anexo'); Route::get('/curso/index', [CursoController::class, 'index'])->name('curso_index'); Route::get('/curso/create', [CursoController::class, 'create'])->name('curso_create'); -- GitLab