Added new setup endpoint

This commit is contained in:
Wyatt Johnson
2017-02-07 10:02:23 -07:00
parent f47638ae07
commit cdc81c4fc5
4 changed files with 53 additions and 27 deletions
@@ -6,8 +6,9 @@ const InitialStep = () => {
return (
<div className={styles.step}>
<p>
Thanks for installing Talk! We sent an email to your team member.
While they finish setting up their account, start engaging with your readers now.
Thanks for installing Talk! We sent an email to verify your email
address. While you finish setting the account, you can start engaging
with your readers now.
</p>
<Button>Launch Talk</Button>
<Button cStyle='black'>Close this Installer</Button>
+1 -1
View File
@@ -3,5 +3,5 @@ export default {
password: pass => (/^(?=.{8,}).*$/.test(pass)),
confirmPassword: () => true,
displayName: displayName => (/^[a-zA-Z0-9_]+$/.test(displayName)),
organizationName: org => (/^[a-zA-Z0-9_]+$/).test(org)
organizationName: org => (/^[a-zA-Z0-9_ ]+$/).test(org)
};