Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
matrix-react-sdk
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
GitHub Mirror
Matrix.org
matrix-react-sdk
Commits
ccd24dd3
Commit
ccd24dd3
authored
Nov 12, 2015
by
Kegan Dougal
Browse files
Options
Downloads
Patches
Plain Diff
Move Cas/PasswordLogin to a new directory so it isn't confused with existing stuff
parent
b127c304
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/components/login/CasLogin.js
+13
-3
13 additions, 3 deletions
src/components/login/CasLogin.js
src/components/login/PasswordLogin.js
+65
-0
65 additions, 0 deletions
src/components/login/PasswordLogin.js
with
78 additions
and
3 deletions
src/co
ntrollers/organisms
/CasLogin.js
→
src/co
mponents/login
/CasLogin.js
+
13
−
3
View file @
ccd24dd3
...
@@ -16,10 +16,12 @@ limitations under the License.
...
@@ -16,10 +16,12 @@ limitations under the License.
'
use strict
'
;
'
use strict
'
;
var
MatrixClientPeg
=
require
(
"
../../MatrixClientPeg
"
);
var
MatrixClientPeg
=
require
(
"
../MatrixClientPeg
"
);
var
React
=
require
(
'
react
'
);
var
url
=
require
(
"
url
"
);
var
url
=
require
(
"
url
"
);
module
.
exports
=
{
module
.
exports
=
React
.
createClass
({
displayName
:
'
CasLogin
'
,
onCasClicked
:
function
(
ev
)
{
onCasClicked
:
function
(
ev
)
{
var
cli
=
MatrixClientPeg
.
get
();
var
cli
=
MatrixClientPeg
.
get
();
...
@@ -30,4 +32,12 @@ module.exports = {
...
@@ -30,4 +32,12 @@ module.exports = {
window
.
location
.
href
=
casUrl
;
window
.
location
.
href
=
casUrl
;
},
},
};
render
:
function
()
{
return
(
<
div
>
<
button
onClick
=
{
this
.
onCasClicked
}
>
Sign
in
with
CAS
<
/button
>
<
/div
>
);
}
});
This diff is collapsed.
Click to expand it.
src/components/login/PasswordLogin.js
0 → 100644
+
65
−
0
View file @
ccd24dd3
/*
Copyright 2015 OpenMarket Ltd
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
var
React
=
require
(
'
react
'
);
var
ReactDOM
=
require
(
'
react-dom
'
);
/**
* A pure UI component which displays a username/password form.
*/
module
.
exports
=
React
.
createClass
({
displayName
:
'
PasswordLogin
'
,
propTypes
:
{
onSubmit
:
React
.
PropTypes
.
func
.
isRequired
// fn(username, password)
},
getInitialState
:
function
()
{
return
{
username
:
""
,
password
:
""
};
},
onSubmitForm
:
function
(
ev
)
{
ev
.
preventDefault
();
this
.
props
.
onSubmit
(
this
.
state
.
username
,
this
.
state
.
password
);
},
onUsernameChanged
:
function
(
ev
)
{
this
.
setState
({
username
:
ev
.
target
.
value
});
},
onPasswordChanged
:
function
(
ev
)
{
this
.
setState
({
password
:
ev
.
target
.
value
});
},
render
:
function
()
{
return
(
<
div
>
<
form
onSubmit
=
{
this
.
onSubmitForm
}
>
<
input
className
=
"
mx_Login_field
"
ref
=
"
user
"
type
=
"
text
"
value
=
{
this
.
state
.
username
}
onChange
=
{
this
.
onUsernameChanged
}
placeholder
=
"
Email or user name
"
/>
<
br
/>
<
input
className
=
"
mx_Login_field
"
ref
=
"
pass
"
type
=
"
password
"
value
=
{
this
.
state
.
password
}
onChange
=
{
this
.
onPasswordChanged
}
placeholder
=
"
Password
"
/>
<
br
/>
<
input
className
=
"
mx_Login_submit
"
type
=
"
submit
"
value
=
"
Log in
"
/>
<
/form
>
<
/div
>
);
}
});
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
sign in
to comment