{% extends "baseTemplate/index.html" %} {% load static %} {# Creation form. The prefix is shown live so the final name is never a surprise. #} {% block title %}Create database{% endblock %} {% block content %}

Create a database

Every database belongs to one website. The site's system user becomes the name prefix, which is what keeps names unique across customers.

{% if not websites %}

You have no websites yet. Create a website first — a database needs an owner.

{% else %}

New database

Names may use letters, digits and underscores, up to {{ maxIdentifier }} characters including the prefix.

Using of databases allowed by this package.

This package does not limit the number of databases.

Will be created as

Will be created as , granted all privileges on this database from localhost only.

At least {{ minPassword }} characters. CloudPanel does not store it — copy it into your application's configuration now.

Connection details

Shown once. The password is not recoverable afterwards.

Hostlocalhost
Database
User
Password
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}