github.com/resonatecoop/id@v1.1.0-43/frontend/src/views/join.js (about)

     1  const html = require('choo/html')
     2  
     3  const Signup = require('../components/forms/signup')
     4  
     5  module.exports = (state, emit) => {
     6    const signup = state.cache(Signup, 'signup')
     7  
     8    return html`
     9      <div class="flex flex-column">
    10        <h2 class="f3 fw1 mt3 near-black near-black--light light-gray--dark lh-title">Join now</h2>
    11        ${signup.render()}
    12        <p class="f6 lh-copy measure">
    13          By signing up, you accept the <a class="link b" href="https://resonate.is/terms-conditions/" target="_blank" rel="noopener">Terms and Conditions</a> and acknowledge the <a class="link b" href="https://resonate.is/privacy-policy/" target="_blank">Privacy Policy</a>.
    14        </p>
    15      </div>
    16    `
    17  }