Commit 04824d8f authored by Alfonso Rafael Solis Rangel's avatar Alfonso Rafael Solis Rangel
Browse files

Correcciones al html

parent 3607836f
Loading
Loading
Loading
Loading
+18 −7
Original line number Diff line number Diff line
@@ -10,12 +10,12 @@
                <a href="{{ route('listas.get') }}" class="text-primary hover:underline">Listas</a>
            </li>
            <li class="before:content-['/'] before:mr-1 rtl:before:ml-1">
                <span>Crear lista</span>
                <span>Actualizar lista</span>
            </li>
        </ul>
        <div class="panel mt-6">
            <div class="flex items-center justify-between mb-5">
                <h5 class="font-semibold text-lg dark:text-white-light">Crear nueva lista</h5>
                <h5 class="font-semibold text-lg dark:text-white-light">Actualizar lista: {{$lista->nombre}}</h5>
            </div>
            <div class="mb-5" x-data="{activeTab: 1}">
                <div class="mb-5">
@@ -90,7 +90,7 @@
                                        </svg>

                                    </a>
                                    <span class="text-center block mt-2" :class="{'text-primary' : activeTab === 5}">Guardar contacto</span>
                                    <span class="text-center block mt-2" :class="{'text-primary' : activeTab === 5}">Guardar lista</span>
                                </li>
                            </ul>
                        </div>
@@ -104,6 +104,7 @@
                                            <label for="nombre">Nombre</label>
                                            <input id="nombre" name="nombre" type="text" required placeholder="Ingresa el nombre de la lista" class="form-input" value="{{ old('nombre', $lista->nombre) }}" />
                                        </div>
                                        <br>
                                    </div>
                                </div>
                                <div x-show="activeTab === 2">
@@ -121,7 +122,10 @@
                                                </div>
                                                <div class="absolute top-0 right-0 mt-6 mr-2">
                                                    <button type="button" class="btn btn-outline-danger removeBtn">
                                                        <!-- SVG goes here -->
                                                        <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
                                                            <path d="M14.5 9.50002L9.5 14.5M9.49998 9.5L14.5 14.5" stroke="#e7515a" stroke-width="1.5" stroke-linecap="round"/>
                                                            <path d="M7 3.33782C8.47087 2.48697 10.1786 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 10.1786 2.48697 8.47087 3.33782 7" stroke="#e7515a" stroke-width="1.5" stroke-linecap="round"/>
                                                        </svg>
                                                    </button>
                                                </div>
                                            </div>
@@ -145,7 +149,10 @@
                                                </div>
                                                <div class="absolute top-0 right-0 mt-6 mr-2">
                                                    <button type="button" class="btn btn-outline-danger removeBtn">
                                                        <!-- SVG goes here -->
                                                        <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
                                                            <path d="M14.5 9.50002L9.5 14.5M9.49998 9.5L14.5 14.5" stroke="#e7515a" stroke-width="1.5" stroke-linecap="round"/>
                                                            <path d="M7 3.33782C8.47087 2.48697 10.1786 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 10.1786 2.48697 8.47087 3.33782 7" stroke="#e7515a" stroke-width="1.5" stroke-linecap="round"/>
                                                        </svg>
                                                    </button>
                                                </div>
                                            </div>
@@ -169,7 +176,10 @@
                                                </div>
                                                <div class="absolute top-0 right-0 mt-6 mr-2">
                                                    <button type="button" class="btn btn-outline-danger removeBtn">
                                                        <!-- SVG goes here -->
                                                        <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
                                                            <path d="M14.5 9.50002L9.5 14.5M9.49998 9.5L14.5 14.5" stroke="#e7515a" stroke-width="1.5" stroke-linecap="round"/>
                                                            <path d="M7 3.33782C8.47087 2.48697 10.1786 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 10.1786 2.48697 8.47087 3.33782 7" stroke="#e7515a" stroke-width="1.5" stroke-linecap="round"/>
                                                        </svg>
                                                    </button>
                                                </div>
                                            </div>
@@ -185,8 +195,9 @@
                                        <p>Si encuentra algún error, puede regresar y editar la información antes de enviar.</p>
                                    </div>
                                    <br>
                                    <button type="submit" class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded focus:outline-none focus:shadow-outline">Guardar lista</button>
                                    <button type="submit" class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded focus:outline-none focus:shadow-outline">Actualizar lista</button>
                                </div>
                                <br>
                            </form>

                        </div>