Sign up
{% if data.status == "wrong_invite" %}
Sorry, this invitation code is not valid.
{% elif data.status == "already" %}
You are already signed in, cannot create a new account.
{% elif data.status == "something_missing" %}
Some input (email/password/invitation code) is missing.
{% elif data.status == "activated" %}
Ok, account created!
You signed up with the following email address:
{{data.user.email}}. If this is wrong, change it now in your account settings.
Start by clicking on the top-right menu icon.
{% else %}
Welcome to Dropely!
We are now in closed beta testing, which means that we can only accept invite-based new users. If you have an invitation code, you can sign up right now. Otherwise, leave your email to reserve your spot in the queue and we will let you know as soon as you can sign up.
{% endif %}
{% if data.error %}
{{ data.error }}
{% endif %}