1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-05 13:55:21 +02:00

Use modal for creating a new container

This commit is contained in:
Michael Crosby 2013-06-18 14:28:22 -09:00
parent c3377073e3
commit c4b0a2257f
5 changed files with 62 additions and 35 deletions

View file

@ -1,26 +1,33 @@
<div>
{{ response }}
<div id="create-modal" class="modal hide fade">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
<h3>Create Container</h3>
</div>
<div class="modal-body">
<div>
{{ response }}
</div>
<form>
<fieldset>
<legend>Start container from Image</legend>
<label>Cmd:</label>
<input type="text" placeholder="{{ commandPlaceholder }}" ng-model="config.commands"/>
<small>Input commands as an array</small>
<label>Memory:</label>
<input type="number" ng-model="config.memory"/>
<label>Memory Swap:</label>
<input type="number" ng-model="config.memorySwap"/>
<label>Volumes From:</label>
<input type="text" ng-model="config.volumesFrom"/>
</fieldset>
</form>
</div>
<div class="modal-footer">
<a href="" class="btn" ng-click="close()">Close</a>
<a href="" class="btn btn-primary" ng-click="create()">Create</a>
</div>
</div>
<form>
<fieldset>
<legend>Start container from Image</legend>
<label>Cmd:</label>
<input type="text" placeholder="{{ commandPlaceholder }}" ng-model="config.commands"/>
<small>Input commands as an array</small>
<label>Memory:</label>
<input type="number" ng-model="config.memory"/>
<label>Memory Swap:</label>
<input type="number" ng-model="config.memorySwap"/>
<label>Volumes From:</label>
<input type="text" ng-model="config.volumesFrom"/>
<br />
<input type="button" ng-click="launchContainer()" value="Launch" />
</fieldset>
</form>