Sistema web para crear proyecto web nuevo

This commit is contained in:
2020-07-03 17:21:55 -04:00
parent af3507bda5
commit ad3952501f
53 changed files with 2437 additions and 0 deletions

View File

@ -0,0 +1,26 @@
@extends('layout.base')
@section('page_content')
<h1 class="ui header">Crear Proyecto</h1>
<div class="ui steps">
<div class="@if (!isset($step) or $step == 1) active @elseif($step > 1) completed @endif step">
<i class="clipboard icon"></i>
<div class="content">
Formulario
</div>
</div>
<div class="@if (isset($step) and $step == 2) active @elseif(isset($step) and $step > 2) completed @endif step">
<i class="tasks icon"></i>
<div class="content">
Confirmar
</div>
</div>
<div class="@if (isset($step) and $step == 3) active @endif step">
<i class="cogs icon"></i>
<div class="content">
Crear
</div>
</div>
</div>
@yield('content')
@endsection