<Switch>
<Route path={`${url}register`}>
<CreateForm id='register' method='POST' link={url} action='/register' title='Регистрация в системе:' formType={2} />
</Route>
<Route path={`${url}`}>
<CreateForm id='authenticate' method='POST' link={url} action='/' title='Войти в систему:' formType={1} />
</Route>
<Route path={`${url}*`}>
<CreateForm id='register' method='POST' link={url} action='/register' title='Регистрация в системе:' formType={2} />
</Route>
</Switch>