kaiwa/views/login.jade

45 lines
2.0 KiB
Plaintext
Raw Normal View History

2013-09-05 19:53:23 -04:00
extends layout
block content
a(href="https://github.com/andyet/otalk")
img(style="position: absolute; top: 0; left: 0; border: 0;", src="https://s3.amazonaws.com/github/ribbons/forkme_left_darkblue_121621.png" alt="Fork me on GitHub")
section#signupBox.content.box
.head
h2 What is Otalk?
.content
2014-01-29 10:25:38 -05:00
p Otalk is an open source chat client powered by <a href="http://xmpp.org">XMPP</a>, <a href="https://github.com/legastero/stanza.io">stanza.io</a>, and <a href="http://webrtc.org">WebRTC</a>. You can think of it as an open source alternative to Skype.
p There's much work still to be done, keep up-to-date by subscribing to the email list.
p You can also track the project on <a href="https://github.com/andyet/otalk">GitHub</a>.
form(action="http://andyet.createsend.com/t/r/s/trulhji/" method="post")
.fieldContainer
label(for='fieldEmail') Email
input#fieldEmail(type='email', name="cm-trulhji-trulhji", placeholder='you@aweso.me', required)
2013-10-24 17:32:20 -04:00
button(type='submit', class="secondary") Subscribe to updates!
2013-09-18 13:45:40 -04:00
section#loginbox.content.box
.head
h2
| Log in
2013-10-24 17:32:20 -04:00
a.button(href="/oauth/login", class="secondary") Have an &amp;yet account?
2013-09-05 19:53:23 -04:00
2013-09-18 13:45:40 -04:00
.content
2013-09-18 13:45:40 -04:00
form
.fieldContainer
label(for='username') JID
input(type='text', id='jid', name='jid', placeholder='you@aweso.me', tabindex='1', autofocus)
.fieldContainer
label(for='password') Password
input(type='password', id='password', name='password', placeholder='•••••••••••••', tabindex='2')
.fieldContainer
2014-02-18 23:44:15 -05:00
label(for='wsURL') WebSocket or BOSH URL
input(type='text', id='connURL', name='connURL', placeholder='wss://aweso.me:5281/xmpp-websocket', tabindex='3')
2013-09-18 13:45:40 -04:00
2013-10-24 17:32:20 -04:00
button(type='submit', tabindex='3', class="primary") Go!
2013-09-05 19:53:23 -04:00
block scripts
2013-09-16 05:19:07 -04:00
script(src="/js/login.js")