diff options
author | David Baker <dave@matrix.org> | 2015-04-01 15:05:30 +0100 |
---|---|---|
committer | David Baker <dave@matrix.org> | 2015-04-01 15:05:30 +0100 |
commit | e9c908ebc09ccc050bd09692c5413124a8c3c06e (patch) | |
tree | 8e22da7bc4130e9fe54a5843e12a16b1b4327543 /static | |
parent | Make docs a bit more true (diff) | |
download | synapse-e9c908ebc09ccc050bd09692c5413124a8c3c06e.tar.xz |
Completely replace fallback auth for C/S V2:
* Now only the auth part goes to fallback, not the whole operation * Auth fallback is a normal API endpoint, not a static page * Params like the recaptcha pubkey can just live in the config Involves a little engineering on JsonResource so its servlets aren't always forced to return JSON. I should document this more, in fact I'll do that now.
Diffstat (limited to 'static')
-rw-r--r-- | static/client/register/style.css | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/static/client/register/style.css b/static/client/register/style.css index a3398852b9..5a7b6eebf2 100644 --- a/static/client/register/style.css +++ b/static/client/register/style.css @@ -37,9 +37,13 @@ textarea, input { margin: auto } +.g-recaptcha div { + margin: auto; +} + #registrationForm { text-align: left; - padding: 1em; + padding: 5px; margin-bottom: 40px; display: inline-block; |