Fix dialog formatting
This commit is contained in:
parent
a98b9ca1a7
commit
30209e2bda
1 changed files with 16 additions and 14 deletions
|
@ -93,42 +93,44 @@
|
||||||
<!-- Content: DB_RESTARTING or CONFIG_RESTARTING -->
|
<!-- Content: DB_RESTARTING or CONFIG_RESTARTING -->
|
||||||
<div class="modal-body" style="padding: 20px;"
|
<div class="modal-body" style="padding: 20px;"
|
||||||
ng-show="isStep(currentStep, States.DB_RESTARTING, States.CONFIG_RESTARTING)">
|
ng-show="isStep(currentStep, States.DB_RESTARTING, States.CONFIG_RESTARTING)">
|
||||||
<i class="fa fa-lg fa-refresh" style="margin-right: 10px;"></i>
|
<h4 style="margin-bottom: 20px;">
|
||||||
<span class="registry-name"></span> is currently being restarted.
|
<i class="fa fa-lg fa-refresh" style="margin-right: 10px;"></i>
|
||||||
<br><br>
|
<span class="registry-name"></span> is currently being restarted
|
||||||
|
</h4>
|
||||||
This can take several minutes. If the container does not restart on its own,
|
This can take several minutes. If the container does not restart on its own,
|
||||||
please reexecute the <code>docker run</code> command.
|
please re-execute the <code>docker run</code> command.
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Content: READY -->
|
<!-- Content: READY -->
|
||||||
<div class="modal-body" style="padding: 20px;"
|
<div class="modal-body" style="padding: 20px;"
|
||||||
ng-show="isStep(currentStep, States.READY)">
|
ng-show="isStep(currentStep, States.READY)">
|
||||||
Installation and setup of <span class="registry-name"></span> is complete. You can
|
<h4>Installation and setup of <span class="registry-name"></span> is complete</h4>
|
||||||
now invite users to join, create organizations and start pushing and pulling
|
You can now invite users to join, create organizations and start pushing and pulling
|
||||||
repositories.
|
repositories.
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Content: VALID_CONFIG -->
|
<!-- Content: VALID_CONFIG -->
|
||||||
<div class="modal-body" style="padding: 20px;"
|
<div class="modal-body" style="padding: 20px;"
|
||||||
ng-show="isStep(currentStep, States.VALID_CONFIG)">
|
ng-show="isStep(currentStep, States.VALID_CONFIG)">
|
||||||
All configuration has been validated and saved. The container must be restarted to
|
<h4>All configuration has been validated and saved</h4>
|
||||||
apply the configuration changes.
|
The container must be restarted to apply the configuration changes.
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Content: DB_SETUP_SUCCESS -->
|
<!-- Content: DB_SETUP_SUCCESS -->
|
||||||
<div class="modal-body" style="padding: 20px;"
|
<div class="modal-body" style="padding: 20px;"
|
||||||
ng-show="isStep(currentStep, States.DB_SETUP_SUCCESS)">
|
ng-show="isStep(currentStep, States.DB_SETUP_SUCCESS)">
|
||||||
The database has been setup and is ready. The container must be restarted to
|
<h4>The database has been setup and is ready</h4>
|
||||||
apply the configuration changes.
|
The container must be restarted to apply the configuration changes.
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Content: DB_SETUP or DB_SETUP_ERROR -->
|
<!-- Content: DB_SETUP or DB_SETUP_ERROR -->
|
||||||
<div class="modal-body" style="padding: 20px;"
|
<div class="modal-body" style="padding: 20px;"
|
||||||
ng-show="isStep(currentStep, States.DB_SETUP, States.DB_SETUP_ERROR)">
|
ng-show="isStep(currentStep, States.DB_SETUP, States.DB_SETUP_ERROR)">
|
||||||
<i class="fa fa-lg fa-database" style="margin-right: 10px;"></i>
|
<h4>
|
||||||
<span class="registry-name"></span> is currently setting up its database
|
<i class="fa fa-lg fa-database" style="margin-right: 10px;"></i>
|
||||||
schema.
|
<span class="registry-name"></span> is currently setting up its database
|
||||||
<br><br>
|
schema
|
||||||
|
</h4>
|
||||||
This can take several minutes.
|
This can take several minutes.
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
Reference in a new issue