summaryrefslogtreecommitdiffstats
path: root/webapp/src/app/devel/deploy/deploy.component.html
blob: 7a15fa6a078e3fd5189ecf2d51560ce4d61b81d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<div class="panel panel-default">
    <div class="panel-heading">
        <h2 class="panel-title">Deployment</h2>
    </div>
    <div class="panel-body">
        <form [formGroup]="deployForm">
            <div class="col-xs-12">
                <table class="table table-borderless table-center">
                    <tbody>
                        <tr>
                            <th>Board IP</th>
                            <td> <input type="text" style="width:99%;" formControlName="boardIP" placeholder="1.2.3.4"> </td>
                        </tr>
                        <tr>
                            <th>File to deploy</th>
                            <td> <input type="text" style="width:99%;" formControlName="wgtFile"> </td>
                        </tr>
                    </tbody>
                </table>
            </div>
            <div class="row">
                <div class="col-xs-12 text-center">
                    <div class="btn-group blocks">
                        <button class="btn btn-primary btn-large" (click)="deploy()" [disabled]="!curProject ">Deploy</button>
                    </div>
                </div>
            </div>
        </form>

    </div>
</div>