diff --git a/react/components/LoginPage/index.js b/react/components/LoginPage/index.js index 722b9be0..b76f8242 100644 --- a/react/components/LoginPage/index.js +++ b/react/components/LoginPage/index.js @@ -1,12 +1,27 @@ import React from 'react'; import NavBar from 'containers/NavBar'; +import ChannelLoginForm from 'containers/ChannelLoginForm'; +import ChannelCreateForm from 'containers/ChannelCreateForm'; class PublishPage extends React.Component { render () { return (
-

Login Page

+
+
+
+

Channels allow you to publish and group content under an identity. You can create a channel for yourself, or share one with like-minded friends. You can create 1 channel, or 100, so whether you're documenting important events, or making a public repository for cat gifs (password: '1234'), try creating a channel for it!

+
+
+
+

Log in to an existing channel:

+ +

Create a brand new channel:

+ +
+
+
); }