/* global LIMITS */ const html = require('choo/html'); const { bytes, platform } = require('../utils'); module.exports = function() { return function(state, emit, close) { const hidden = platform() === 'android' ? 'hidden' : ''; let submitting = false; return html`

${state.translate('accountBenefitTitle')}

`; function emailish(str) { if (!str) { return false; } // just check if it's the right shape const a = str.split('@'); return a.length === 2 && a.every(s => s.length > 0); } function submitEmail(event) { event.preventDefault(); if (submitting) { return; } submitting = true; const el = document.getElementById('email-input'); const email = el.value; emit('login', emailish(email) ? email : null); } }; };