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.
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/index.html Sun May 03 23:25:12 2015 -0400 1.3 @@ -0,0 +1,11 @@ 1.4 +<!DOCTYPE html> 1.5 +<html> 1.6 +<head> 1.7 + <meta charset="utf-8"> 1.8 + <link rel="stylesheet" href="/static/main.css" /> 1.9 +</head> 1.10 +<body> 1.11 +</body> 1.12 +<script src="/static/common.js"></script> 1.13 +<script src="/static/bundle.js"></script> 1.14 +</html>