{% extends 'base.html' %} {% block title %}Create{% endblock %} {% block content %}

Create Capsul

    CAPSUL SIZES
    ============
    type     monthly*  cpus  mem     ssd   net*
    -----    -------   ----  ---     ---   ---
    f1-xs    $5.00     1     512M    25G   .5TB
    f1-s     $7.50     1     1024M   25G   1TB
    f1-m     $12.50    1     2048M   25G   2TB
    f1-l     $20.00    2     3072M   25G   3TB
    f1-x     $27.50    3     4096M   25G   4TB
    f1-xx    $50.00    4     8192M   25G   5TB

    * net is calculated as a per-month average
    * vms are billed for a minimum of 24 hours upon creation
    * all VMs come standard with one public IPv4 address
    Your account balance: ${{ account_balance }}
  
{% if cant_afford %}

Please fund your account in order to create Capsuls

(At least one month of funding is required)

{% elif no_ssh_public_keys %}

You don't have any ssh public keys yet.

You must upload one before you can create a Capsul.

{% elif not capacity_avaliable %}

Host(s) at capacity. No capsuls can be created at this time. sorry.

{% else %}
{% for key in ssh_authorized_keys %} {% endfor %}
{% endif %}
{% endblock %} {% block subcontent %} {% if not cant_afford and not no_ssh_public_keys %}

Using our services implies that you agree to our terms of service & privacy policy.

{% endif %} {% endblock %} {% block pagesource %}/templates/create-capsul.html{% endblock %}