summaryrefslogtreecommitdiffstats
path: root/testapi/opnfv_testapi/ui/components/scenarios/modals/customModal.html
blob: 422574940564a0f5190b6ea22db87e3e8f218d20 (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
32
33
34
35
36
37
38
<div class="ball" style="padding:5px;">
        <div class="modal-body">
            <div class="form-horizontal">
                <fieldset>
                    <div class="form-group">
                        <legend>{{customModalCtrl.data.text}}</legend>
                        <div class="row">
                                <div class="update-project">
                                        <label for="cpid" class="control-label col-sm-2">Custom: </label>
                                    <table cellpadding="0" cellspacing="0">
                                        <tbody>
                                            <tr>
                                                <td>
                                                    <div class="col-sm-12">
                                                        <input type="text" class="form-control" ng-model="customModalCtrl.custom"/>
                                                        <p class="help-block">
                                                            Please separate multiple customs with space or comma
                                                        </p>
                                                    </div>
                                                </td>
                                            </tr>
                                        </tbody>
                                    </table>
                                </div>
                        </div>
                    </div>
                </fieldset>
            </div>
        </div>
        <div class="modal-footer">
            <div ng-show="customModalCtrl.showCreateError" style="padding:0px;" class="col-md-6 alert alert-danger" role="alert">
                    <span class="pull-right">&nbsp;{{customModalCtrl.error}}</span>
                    <span class="glyphicon glyphicon-exclamation-sign pull-right" aria-hidden="true" >Error:</span>
            </div>
            <button class="btn btn-primary" ng-click="customModalCtrl.confirm()">Ok</button>
            <button class="btn btn-default" ng-click="customModalCtrl.cancel()">Cancel</button>
        </div>
    </div>