├── .babelrc ├── .dockerignore ├── .env.example ├── .eslintrc.js ├── .github └── workflows │ └── build-and-deploy.yml ├── .gitignore ├── .prettierrc ├── .sequelizerc ├── Dockerfile ├── GeoIP2-Country.mmdb ├── LICENSE ├── README.md ├── admin ├── .gitignore ├── README.md ├── package.json ├── public │ └── index.html ├── src │ ├── components │ │ ├── dashboard.css │ │ ├── dashboard.tsx │ │ ├── main.css │ │ ├── main.test.tsx │ │ ├── main.tsx │ │ ├── signup-detail.css │ │ ├── signup-detail.tsx │ │ ├── signup-list.css │ │ └── signup-list.tsx │ ├── helpers │ │ ├── api.ts │ │ ├── safe-storage.ts │ │ └── signup-model.d.ts │ ├── index.css │ ├── index.test.ts │ └── index.tsx ├── tsconfig.json ├── tsconfig.prod.json ├── tsconfig.test.json ├── tslint.json ├── tslint.test.json └── yarn.lock ├── app.js ├── app.json ├── bad-domains.js ├── bin └── www ├── constants.js ├── contrib ├── generate-create-account-url.js └── resend-approval-emails.js ├── countries.json ├── db ├── config │ └── config.json ├── migrations │ ├── 001.create-users.js │ ├── 002.create-actions.js │ ├── 003.create-tracking-id.js │ ├── 004.normalize-emails.js │ ├── 005.create-review-note.js │ ├── 006.add-gatekeeper-id.js │ ├── 20200515045616-analytics.js │ ├── 20200528-add-ref-code-actions.js.bak │ ├── 20200528-create-email-code.js │ ├── 20200528-create-phone-code.js │ ├── 20200528-remove-booked-username.js.bak │ ├── 20200528-remove-email-phone-users.js.bak │ ├── 20200611144548-add_email_code_first_sent_field.js │ └── 20200611144604-add_phone_code_first_sent_field.js ├── models │ ├── __mocks__ │ │ └── index.js │ ├── actions.js │ ├── analytics.js │ ├── emailcode.js │ ├── index.js │ ├── phonecode.js │ └── users.js └── seeders │ └── users-data.js ├── helpers ├── __mocks__ │ ├── database.js │ └── services.js ├── analytics.js ├── database.js ├── errortypes.js ├── fingerprint.js ├── getClientConfig.js ├── locales.json ├── logger.js ├── mail.js ├── maxmind.js ├── recaptcha.js ├── services.js ├── stepLogger.js ├── templates.json ├── tron.js ├── twilio.js ├── validator.js └── validator.test.js ├── package.json ├── public ├── .DS_Store ├── css │ ├── antd.css │ └── ie.css ├── fonts │ ├── Iconfont.eot │ ├── Iconfont.svg │ ├── Iconfont.ttf │ ├── Iconfont.woff │ ├── Whitney.woff │ ├── WhitneyBold.woff │ └── WhitneyMedium.woff ├── img │ ├── free.png │ ├── logo-steem.svg │ ├── pay.png │ ├── pdf-logo.svg │ ├── signup-create-account.svg │ ├── signup-email-confirmation.svg │ ├── signup-email.svg │ ├── signup-error.svg │ ├── signup-options.svg │ ├── signup-password.svg │ ├── signup-phone.svg │ ├── signup-sms.svg │ ├── signup-username.png │ └── steemit-logo.svg └── js │ └── .gitkeep ├── routes ├── admin.js ├── adminHandlers.js ├── adminHandlers.test.js ├── api.js ├── apiHandlers.js ├── apiHandlers.test.js └── index.js ├── src ├── Root.js ├── assets │ └── fonts │ │ ├── Roboto-Bold.ttf │ │ ├── Roboto-Regular.ttf │ │ └── RobotoMono-Regular.ttf ├── components │ ├── ConfirmEmail.js │ ├── CreateAccount.js │ ├── CreateAccount.less │ ├── Finish.js │ ├── Form │ │ ├── CreateAccount │ │ │ └── Password.js │ │ └── Signup │ │ │ ├── ConfirmPhoneNumber.js │ │ │ ├── CreateAccount.js │ │ │ ├── Email.js │ │ │ ├── EmailChinese.js │ │ │ ├── PhoneNumber.js │ │ │ ├── SavePassword.js │ │ │ ├── SendCode.js │ │ │ ├── SignupOptions.js │ │ │ ├── SignupOptions.less │ │ │ ├── UserInfo.js │ │ │ └── Username.js │ ├── Index.js │ ├── LanguageItem.js │ ├── Locale.js │ ├── PdfDownload.js │ ├── Placeholder.js │ ├── SiftTracker.js │ ├── Signup.js │ ├── Signup.less │ └── Welcome.js ├── containers │ ├── ConfirmEmailStep.js │ ├── CreateAccountSteps.js │ ├── LocaleWrapper.js │ ├── SignupSteps.js │ └── WelcomeSteps.js ├── index.js ├── locales │ ├── en.json │ ├── fr.json │ └── zh.json ├── reducers │ ├── app.js │ ├── tracking.js │ └── user.js ├── routes.js ├── sagas.js ├── store.js ├── styles │ ├── common.less │ ├── custom.less │ ├── screen-sizes.less │ └── theme.less ├── utils │ ├── api.js │ ├── auth.js │ ├── fetch.js │ ├── locales.js │ ├── phone-utils.js │ ├── to-js.js │ ├── to-js.test.js │ ├── tron.js │ └── url.js └── widgets │ ├── Loading.js │ └── Loading.less ├── views └── index.hbs ├── webpack ├── makeConfig.js ├── webpack.config.js ├── webpack.js └── webpack.prod.config.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/.babelrc -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/build-and-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/.github/workflows/build-and-deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/.prettierrc -------------------------------------------------------------------------------- /.sequelizerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/.sequelizerc -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/Dockerfile -------------------------------------------------------------------------------- /GeoIP2-Country.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/GeoIP2-Country.mmdb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/README.md -------------------------------------------------------------------------------- /admin/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | coverage/ 3 | build/ 4 | -------------------------------------------------------------------------------- /admin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/admin/README.md -------------------------------------------------------------------------------- /admin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/admin/package.json -------------------------------------------------------------------------------- /admin/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/admin/public/index.html -------------------------------------------------------------------------------- /admin/src/components/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/admin/src/components/dashboard.css -------------------------------------------------------------------------------- /admin/src/components/dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/admin/src/components/dashboard.tsx -------------------------------------------------------------------------------- /admin/src/components/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/admin/src/components/main.css -------------------------------------------------------------------------------- /admin/src/components/main.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/admin/src/components/main.test.tsx -------------------------------------------------------------------------------- /admin/src/components/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/admin/src/components/main.tsx -------------------------------------------------------------------------------- /admin/src/components/signup-detail.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/admin/src/components/signup-detail.css -------------------------------------------------------------------------------- /admin/src/components/signup-detail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/admin/src/components/signup-detail.tsx -------------------------------------------------------------------------------- /admin/src/components/signup-list.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/admin/src/components/signup-list.css -------------------------------------------------------------------------------- /admin/src/components/signup-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/admin/src/components/signup-list.tsx -------------------------------------------------------------------------------- /admin/src/helpers/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/admin/src/helpers/api.ts -------------------------------------------------------------------------------- /admin/src/helpers/safe-storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/admin/src/helpers/safe-storage.ts -------------------------------------------------------------------------------- /admin/src/helpers/signup-model.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/admin/src/helpers/signup-model.d.ts -------------------------------------------------------------------------------- /admin/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/admin/src/index.css -------------------------------------------------------------------------------- /admin/src/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/admin/src/index.test.ts -------------------------------------------------------------------------------- /admin/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/admin/src/index.tsx -------------------------------------------------------------------------------- /admin/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/admin/tsconfig.json -------------------------------------------------------------------------------- /admin/tsconfig.prod.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./tsconfig.json" 3 | } -------------------------------------------------------------------------------- /admin/tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/admin/tsconfig.test.json -------------------------------------------------------------------------------- /admin/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/admin/tslint.json -------------------------------------------------------------------------------- /admin/tslint.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/admin/tslint.test.json -------------------------------------------------------------------------------- /admin/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/admin/yarn.lock -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/app.js -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/app.json -------------------------------------------------------------------------------- /bad-domains.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/bad-domains.js -------------------------------------------------------------------------------- /bin/www: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/bin/www -------------------------------------------------------------------------------- /constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/constants.js -------------------------------------------------------------------------------- /contrib/generate-create-account-url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/contrib/generate-create-account-url.js -------------------------------------------------------------------------------- /contrib/resend-approval-emails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/contrib/resend-approval-emails.js -------------------------------------------------------------------------------- /countries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/countries.json -------------------------------------------------------------------------------- /db/config/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/db/config/config.json -------------------------------------------------------------------------------- /db/migrations/001.create-users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/db/migrations/001.create-users.js -------------------------------------------------------------------------------- /db/migrations/002.create-actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/db/migrations/002.create-actions.js -------------------------------------------------------------------------------- /db/migrations/003.create-tracking-id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/db/migrations/003.create-tracking-id.js -------------------------------------------------------------------------------- /db/migrations/004.normalize-emails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/db/migrations/004.normalize-emails.js -------------------------------------------------------------------------------- /db/migrations/005.create-review-note.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/db/migrations/005.create-review-note.js -------------------------------------------------------------------------------- /db/migrations/006.add-gatekeeper-id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/db/migrations/006.add-gatekeeper-id.js -------------------------------------------------------------------------------- /db/migrations/20200515045616-analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/db/migrations/20200515045616-analytics.js -------------------------------------------------------------------------------- /db/migrations/20200528-add-ref-code-actions.js.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/db/migrations/20200528-add-ref-code-actions.js.bak -------------------------------------------------------------------------------- /db/migrations/20200528-create-email-code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/db/migrations/20200528-create-email-code.js -------------------------------------------------------------------------------- /db/migrations/20200528-create-phone-code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/db/migrations/20200528-create-phone-code.js -------------------------------------------------------------------------------- /db/migrations/20200528-remove-booked-username.js.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/db/migrations/20200528-remove-booked-username.js.bak -------------------------------------------------------------------------------- /db/migrations/20200528-remove-email-phone-users.js.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/db/migrations/20200528-remove-email-phone-users.js.bak -------------------------------------------------------------------------------- /db/migrations/20200611144548-add_email_code_first_sent_field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/db/migrations/20200611144548-add_email_code_first_sent_field.js -------------------------------------------------------------------------------- /db/migrations/20200611144604-add_phone_code_first_sent_field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/db/migrations/20200611144604-add_phone_code_first_sent_field.js -------------------------------------------------------------------------------- /db/models/__mocks__/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/db/models/__mocks__/index.js -------------------------------------------------------------------------------- /db/models/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/db/models/actions.js -------------------------------------------------------------------------------- /db/models/analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/db/models/analytics.js -------------------------------------------------------------------------------- /db/models/emailcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/db/models/emailcode.js -------------------------------------------------------------------------------- /db/models/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/db/models/index.js -------------------------------------------------------------------------------- /db/models/phonecode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/db/models/phonecode.js -------------------------------------------------------------------------------- /db/models/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/db/models/users.js -------------------------------------------------------------------------------- /db/seeders/users-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/db/seeders/users-data.js -------------------------------------------------------------------------------- /helpers/__mocks__/database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/helpers/__mocks__/database.js -------------------------------------------------------------------------------- /helpers/__mocks__/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/helpers/__mocks__/services.js -------------------------------------------------------------------------------- /helpers/analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/helpers/analytics.js -------------------------------------------------------------------------------- /helpers/database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/helpers/database.js -------------------------------------------------------------------------------- /helpers/errortypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/helpers/errortypes.js -------------------------------------------------------------------------------- /helpers/fingerprint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/helpers/fingerprint.js -------------------------------------------------------------------------------- /helpers/getClientConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/helpers/getClientConfig.js -------------------------------------------------------------------------------- /helpers/locales.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/helpers/locales.json -------------------------------------------------------------------------------- /helpers/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/helpers/logger.js -------------------------------------------------------------------------------- /helpers/mail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/helpers/mail.js -------------------------------------------------------------------------------- /helpers/maxmind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/helpers/maxmind.js -------------------------------------------------------------------------------- /helpers/recaptcha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/helpers/recaptcha.js -------------------------------------------------------------------------------- /helpers/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/helpers/services.js -------------------------------------------------------------------------------- /helpers/stepLogger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/helpers/stepLogger.js -------------------------------------------------------------------------------- /helpers/templates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/helpers/templates.json -------------------------------------------------------------------------------- /helpers/tron.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/helpers/tron.js -------------------------------------------------------------------------------- /helpers/twilio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/helpers/twilio.js -------------------------------------------------------------------------------- /helpers/validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/helpers/validator.js -------------------------------------------------------------------------------- /helpers/validator.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/helpers/validator.test.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/package.json -------------------------------------------------------------------------------- /public/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/public/.DS_Store -------------------------------------------------------------------------------- /public/css/antd.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/public/css/antd.css -------------------------------------------------------------------------------- /public/css/ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/public/css/ie.css -------------------------------------------------------------------------------- /public/fonts/Iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/public/fonts/Iconfont.eot -------------------------------------------------------------------------------- /public/fonts/Iconfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/public/fonts/Iconfont.svg -------------------------------------------------------------------------------- /public/fonts/Iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/public/fonts/Iconfont.ttf -------------------------------------------------------------------------------- /public/fonts/Iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/public/fonts/Iconfont.woff -------------------------------------------------------------------------------- /public/fonts/Whitney.woff: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fonts/WhitneyBold.woff: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fonts/WhitneyMedium.woff: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/img/free.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/public/img/free.png -------------------------------------------------------------------------------- /public/img/logo-steem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/public/img/logo-steem.svg -------------------------------------------------------------------------------- /public/img/pay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/public/img/pay.png -------------------------------------------------------------------------------- /public/img/pdf-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/public/img/pdf-logo.svg -------------------------------------------------------------------------------- /public/img/signup-create-account.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/public/img/signup-create-account.svg -------------------------------------------------------------------------------- /public/img/signup-email-confirmation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/public/img/signup-email-confirmation.svg -------------------------------------------------------------------------------- /public/img/signup-email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/public/img/signup-email.svg -------------------------------------------------------------------------------- /public/img/signup-error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/public/img/signup-error.svg -------------------------------------------------------------------------------- /public/img/signup-options.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/public/img/signup-options.svg -------------------------------------------------------------------------------- /public/img/signup-password.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/public/img/signup-password.svg -------------------------------------------------------------------------------- /public/img/signup-phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/public/img/signup-phone.svg -------------------------------------------------------------------------------- /public/img/signup-sms.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/public/img/signup-sms.svg -------------------------------------------------------------------------------- /public/img/signup-username.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/public/img/signup-username.png -------------------------------------------------------------------------------- /public/img/steemit-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/public/img/steemit-logo.svg -------------------------------------------------------------------------------- /public/js/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /routes/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/routes/admin.js -------------------------------------------------------------------------------- /routes/adminHandlers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/routes/adminHandlers.js -------------------------------------------------------------------------------- /routes/adminHandlers.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/routes/adminHandlers.test.js -------------------------------------------------------------------------------- /routes/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/routes/api.js -------------------------------------------------------------------------------- /routes/apiHandlers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/routes/apiHandlers.js -------------------------------------------------------------------------------- /routes/apiHandlers.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/routes/apiHandlers.test.js -------------------------------------------------------------------------------- /routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/routes/index.js -------------------------------------------------------------------------------- /src/Root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/src/Root.js -------------------------------------------------------------------------------- /src/assets/fonts/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/src/assets/fonts/Roboto-Bold.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/src/assets/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /src/assets/fonts/RobotoMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/src/assets/fonts/RobotoMono-Regular.ttf -------------------------------------------------------------------------------- /src/components/ConfirmEmail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/src/components/ConfirmEmail.js -------------------------------------------------------------------------------- /src/components/CreateAccount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/src/components/CreateAccount.js -------------------------------------------------------------------------------- /src/components/CreateAccount.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/src/components/CreateAccount.less -------------------------------------------------------------------------------- /src/components/Finish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/src/components/Finish.js -------------------------------------------------------------------------------- /src/components/Form/CreateAccount/Password.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/src/components/Form/CreateAccount/Password.js -------------------------------------------------------------------------------- /src/components/Form/Signup/ConfirmPhoneNumber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/src/components/Form/Signup/ConfirmPhoneNumber.js -------------------------------------------------------------------------------- /src/components/Form/Signup/CreateAccount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/src/components/Form/Signup/CreateAccount.js -------------------------------------------------------------------------------- /src/components/Form/Signup/Email.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/src/components/Form/Signup/Email.js -------------------------------------------------------------------------------- /src/components/Form/Signup/EmailChinese.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/src/components/Form/Signup/EmailChinese.js -------------------------------------------------------------------------------- /src/components/Form/Signup/PhoneNumber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/src/components/Form/Signup/PhoneNumber.js -------------------------------------------------------------------------------- /src/components/Form/Signup/SavePassword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/src/components/Form/Signup/SavePassword.js -------------------------------------------------------------------------------- /src/components/Form/Signup/SendCode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/src/components/Form/Signup/SendCode.js -------------------------------------------------------------------------------- /src/components/Form/Signup/SignupOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/src/components/Form/Signup/SignupOptions.js -------------------------------------------------------------------------------- /src/components/Form/Signup/SignupOptions.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/src/components/Form/Signup/SignupOptions.less -------------------------------------------------------------------------------- /src/components/Form/Signup/UserInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/src/components/Form/Signup/UserInfo.js -------------------------------------------------------------------------------- /src/components/Form/Signup/Username.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/src/components/Form/Signup/Username.js -------------------------------------------------------------------------------- /src/components/Index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/src/components/Index.js -------------------------------------------------------------------------------- /src/components/LanguageItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/src/components/LanguageItem.js -------------------------------------------------------------------------------- /src/components/Locale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/src/components/Locale.js -------------------------------------------------------------------------------- /src/components/PdfDownload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/src/components/PdfDownload.js -------------------------------------------------------------------------------- /src/components/Placeholder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/src/components/Placeholder.js -------------------------------------------------------------------------------- /src/components/SiftTracker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/src/components/SiftTracker.js -------------------------------------------------------------------------------- /src/components/Signup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/src/components/Signup.js -------------------------------------------------------------------------------- /src/components/Signup.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/src/components/Signup.less -------------------------------------------------------------------------------- /src/components/Welcome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/src/components/Welcome.js -------------------------------------------------------------------------------- /src/containers/ConfirmEmailStep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/src/containers/ConfirmEmailStep.js -------------------------------------------------------------------------------- /src/containers/CreateAccountSteps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/src/containers/CreateAccountSteps.js -------------------------------------------------------------------------------- /src/containers/LocaleWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/src/containers/LocaleWrapper.js -------------------------------------------------------------------------------- /src/containers/SignupSteps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/src/containers/SignupSteps.js -------------------------------------------------------------------------------- /src/containers/WelcomeSteps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/src/containers/WelcomeSteps.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/src/index.js -------------------------------------------------------------------------------- /src/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/src/locales/en.json -------------------------------------------------------------------------------- /src/locales/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/src/locales/fr.json -------------------------------------------------------------------------------- /src/locales/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/src/locales/zh.json -------------------------------------------------------------------------------- /src/reducers/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/src/reducers/app.js -------------------------------------------------------------------------------- /src/reducers/tracking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/src/reducers/tracking.js -------------------------------------------------------------------------------- /src/reducers/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/src/reducers/user.js -------------------------------------------------------------------------------- /src/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/src/routes.js -------------------------------------------------------------------------------- /src/sagas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/src/sagas.js -------------------------------------------------------------------------------- /src/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/src/store.js -------------------------------------------------------------------------------- /src/styles/common.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/src/styles/common.less -------------------------------------------------------------------------------- /src/styles/custom.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/src/styles/custom.less -------------------------------------------------------------------------------- /src/styles/screen-sizes.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/src/styles/screen-sizes.less -------------------------------------------------------------------------------- /src/styles/theme.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/src/styles/theme.less -------------------------------------------------------------------------------- /src/utils/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/src/utils/api.js -------------------------------------------------------------------------------- /src/utils/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/src/utils/auth.js -------------------------------------------------------------------------------- /src/utils/fetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/src/utils/fetch.js -------------------------------------------------------------------------------- /src/utils/locales.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/src/utils/locales.js -------------------------------------------------------------------------------- /src/utils/phone-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/src/utils/phone-utils.js -------------------------------------------------------------------------------- /src/utils/to-js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/src/utils/to-js.js -------------------------------------------------------------------------------- /src/utils/to-js.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/src/utils/to-js.test.js -------------------------------------------------------------------------------- /src/utils/tron.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/src/utils/tron.js -------------------------------------------------------------------------------- /src/utils/url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/src/utils/url.js -------------------------------------------------------------------------------- /src/widgets/Loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/src/widgets/Loading.js -------------------------------------------------------------------------------- /src/widgets/Loading.less: -------------------------------------------------------------------------------- 1 | .Loading { 2 | font-size: 34px; 3 | color: #108ee9; 4 | } 5 | -------------------------------------------------------------------------------- /views/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/views/index.hbs -------------------------------------------------------------------------------- /webpack/makeConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/webpack/makeConfig.js -------------------------------------------------------------------------------- /webpack/webpack.config.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = require('./makeConfig')({ 3 | isDevelopment: true 4 | }); 5 | 6 | -------------------------------------------------------------------------------- /webpack/webpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/webpack/webpack.js -------------------------------------------------------------------------------- /webpack/webpack.prod.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./makeConfig')({ 2 | isDevelopment: false, 3 | }); 4 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steemit/faucet/HEAD/yarn.lock --------------------------------------------------------------------------------