This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pm.test("Response is JSON", function () { | |
pm.response.to.have.jsonBody(); | |
}); | |
// Guarda el token en una variable del entorno | |
pm.test("Save token to environment variable", function () { | |
var jsonData = pm.response.json(); | |
var token = jsonData.data.token; | |
pm.environment.set('access_token', token); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import styled from 'styled-components'; | |
import img from "../images/logo-blanco.svg"; | |
const StyledMenuStrip = styled.div` | |
padding: 0.5rem 2rem; /* Add some padding for content */ | |
display: flex; | |
align-items: center; | |
justify-content: space-between; /* Distribute space between logo and content */ | |
width: 100%; /* Span the full width of the viewport */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { useState } from 'react'; | |
import styled from 'styled-components'; | |
import img from "../images/turismo-dental-hero.webp"; | |
import MenuStrip from './menuStrip'; | |
const StyledHero = styled.section` | |
background-image: url(${img}); | |
background-size: cover; | |
background-position: center; | |
height: 100vh; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import "./styles.css"; | |
import React, {useState} from "react" | |
export default function App() { | |
const [intervenciones, setIntervenciones] = useState([ | |
"depresion","angustia","autoestima", "otra" | |
]); | |
const [perfil, setPerfil] = useState({ | |
intervenciones: [] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>sdadasd</title> | |
</head> | |
<body> | |
<div class="modal-body"> | |
<ul class="nav nav-tabs"> | |
<li class="nav-item" onclick="showChart()"><a class="nav-link active" data-toggle="tab" href="#iqitcharts-tab-0"> SIZE CHART</a></li> | |
<li class="nav-item" onclick="showCalculator()"><a class="nav-link" data-toggle="tab" href="#iqitcharts-tab-1"> BRA FITTING CALCULATOR </a></li> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.js"></script> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.4.1/css/bootstrap.min.css"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"></script> | |
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"></script> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/cropperjs/1.5.6/cropper.css"/> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/cropperjs/1.5.6/cropper.js"></script> | |
<style> | |
img { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.js"></script> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.4.1/css/bootstrap.min.css"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"></script> | |
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"></script> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/cropperjs/1.5.6/cropper.css"/> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/cropperjs/1.5.6/cropper.js"></script> | |
<style> | |
img { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Helpers; | |
use Illuminate\Container\Container; | |
use Illuminate\Pagination\LengthAwarePaginator; | |
use Illuminate\Pagination\Paginator; | |
use Illuminate\Support\Collection; | |
use Livewire\WithPagination; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="flex items-center justify-center"> | |
<div class="antialiased sans-serif"> | |
<div x-data="app()" x-init="[initDate(), getNoOfDays()]" x-cloak> | |
<div class="container mx-auto px-4 py-2 md:py-10"> | |
<div class="mb-5 w-64"> | |
<label for="datepicker" class="font-bold mb-1 text-gray-700 block">Selecciona la fecha</label> | |
<div class="relative"> | |
<input type="hidden" name="date" x-ref="date"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="form-group"> | |
<div class="col-xs-12"> | |
<div> | |
<label>Desde:</label> | |
<input type="text" id="initDate" x-model="initDate" data-provide="datepicker" class="datepicker form-control"> | |
</div> | |
</div> | |
<div class="col-xs-12"> |
NewerOlder