Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 6591 | Rev 6602 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 6591 Rev 6592
Línea 3... Línea 3...
3
import { useForm } from 'react-hook-form'
3
import { useForm } from 'react-hook-form'
4
import { useDispatch, useSelector } from 'react-redux'
4
import { useDispatch, useSelector } from 'react-redux'
5
import Recaptcha from 'react-recaptcha'
5
import Recaptcha from 'react-recaptcha'
6
import cryptoJsAesJson from '../../../utils/crypto-js/cryptojs-aes-format'
6
import cryptoJsAesJson from '../../../utils/crypto-js/cryptojs-aes-format'
Línea 7... Línea 7...
7
 
7
 
8
import { login } from '../../../redux/auth/auth.actions'
8
// import { login } from '../../../redux/auth/auth.actions'
Línea 9... Línea 9...
9
import { addNotification } from '../../../redux/notification/notification.actions'
9
import { addNotification } from '../../../redux/notification/notification.actions'
10
 
10
 
Línea 11... Línea 11...
11
import Spinner from '../../../components/UI/Spinner'
11
import Spinner from '../../../components/UI/Spinner'
12
import FormErrorFeedback from '../../../components/UI/FormErrorFeedback'
12
import FormErrorFeedback from '../../../components/UI/FormErrorFeedback'
13
 
13
 
14
const Login = ({
14
const Login = ({
15
  facebookOauth = '/signin/facebook',
15
  facebookOauth = '/signin/facebook',
16
  twitterOauth = '/signin/twitter',
16
  twitterOauth = '/signin/twitter',
-
 
17
  googleOauth = '/signin/google',
-
 
18
}) => {
17
  googleOauth = '/signin/google',
19
  const { site_key, aes, access_usign_social_networks } = useSelector(
18
}) => {
20
    ({ auth }) => auth
19
  const { site_key, aes, defaultNetwork } = useSelector(({ auth }) => auth)
21
  )
Línea 20... Línea 22...
20
  const [rememberChecked, setRememberChecked] = useState(false)
22
  const [rememberChecked, setRememberChecked] = useState(false)
Línea 204... Línea 206...
204
          disabled={!isVerified}
206
          disabled={!isVerified}
205
        >
207
        >
206
          Entrar
208
          Entrar
207
        </button>
209
        </button>
208
      </form>
210
      </form>
209
      {defaultNetwork && (
211
      {access_usign_social_networks === 'y' && (
210
        <div className="login-resources">
212
        <div className="login-resources">
211
          <h4>Entrar usando su red social</h4>
213
          <h4>Entrar usando su red social</h4>
212
          <ul>
214
          <ul>
213
            <li>
215
            <li>
214
              <a
216
              <a