inital implementation of using GitLab OAuth2 provider for signup/login

Этот коммит содержится в:
JoramWilander
2015-07-15 12:48:50 -04:00
родитель 2fef71da69
Коммит c39e95c7cb
11 изменённых файлов: 473 добавлений и 68 удалений

11
web/react/pages/signup_user_oauth.jsx Обычный файл
Просмотреть файл

@@ -0,0 +1,11 @@
// Copyright (c) 2015 Spinpunch, Inc. All Rights Reserved.
// See License.txt for license information.
var SignupUserOAuth = require('../components/signup_user_oauth.jsx');
global.window.setup_signup_user_oauth_page = function(user) {
React.render(
<SignupUserOAuth user={user} />,
document.getElementById('signup-user-complete')
);
};