- progress

This commit is contained in:
Edin Dazdarevic
2015-05-29 21:10:07 +02:00
parent bd61e4eef8
commit 797b93e81c
14 changed files with 287 additions and 23 deletions

View File

@@ -1,16 +1,22 @@
<template name="newMachine">
<div class="row">
<div class="col-lg-12">
<div class="panel panel-default">
<div class="panel-body">
<h3>Add new machine</h3>
<form class="new-machine">
<input type="text" name="machineName" class='machine-name' placeholder="Machine Name" />
<button type='button' name='btnAddNewMachine' class='new-machine-save-btn'>Add new machine</button>
<input type="text" name="machineName" class='form-control machine-name' placeholder="Machine Name" />
<button type='button' name='btnAddNewMachine' class='btn btn-default new-machine-save-btn'>Save</button>
<button type='button' class='btn btn-default new-machine-cancel-btn'>Cancel</button>
{{#if newMachineAdded}}
<div>You have successfully added a new machine. Please run <b>'chub init {{newMachineAdded}}'</b> on your computer. </div>
<button type='button' class='close-new-machine-btn'>Ok! Got It.</button>
<div>You have successfully added a new machine. Please run <pre>'chub init {{newMachineAdded}}'</pre> on your computer. </div>
<button type='button' class='btn btn-default close-new-machine-btn'>Ok, Got It!</button>
{{/if}}
</form>
</div>
</div>
</div>
</div>
</template>