ducky/web
2015-05-03
Child:5d47855181e1
ducky/web/index.html
First commit. Setup project structure, start getting our registration flow set up. At this point, it runs successfully locally, assuming the auth server is running locally at slightly.local:8080. So, uh... on my computer. Also, we currently have the Register button (on the register page) disabled always, because we still need to hook up form validation and set the this.state.valid property. If that property is set to true, then the button is enabled again. Still to do: validation, logging in. Then what we have written works, minus some configuration stuff that still needs to be figured out.
| paddy@0 | 1 <!DOCTYPE html> |
| paddy@0 | 2 <html> |
| paddy@0 | 3 <head> |
| paddy@0 | 4 <meta charset="utf-8"> |
| paddy@0 | 5 <link rel="stylesheet" href="/static/main.css" /> |
| paddy@0 | 6 </head> |
| paddy@0 | 7 <body> |
| paddy@0 | 8 </body> |
| paddy@0 | 9 <script src="/static/common.js"></script> |
| paddy@0 | 10 <script src="/static/bundle.js"></script> |
| paddy@0 | 11 </html> |