Fix for Penetration test _ Session and cookie management
[vid.git] / vid-app-common / src / main / webapp / app / vid / scripts / modals / attach-test-env-manifest / attach-test-env-manifest.html
1 <!--
2   ============LICENSE_START=======================================================
3   VID
4   ================================================================================
5   Copyright (C) 2017 - 2019 AT&T Intellectual Property. All rights reserved.
6   ================================================================================
7   Licensed under the Apache License, Version 2.0 (the "License");
8   you may not use this file except in compliance with the License.
9   You may obtain a copy of the License at
10   
11        http://www.apache.org/licenses/LICENSE-2.0
12   
13   Unless required by applicable law or agreed to in writing, software
14   distributed under the License is distributed on an "AS IS" BASIS,
15   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16   See the License for the specific language governing permissions and
17   limitations under the License.
18   ============LICENSE_END=========================================================
19   -->
20
21 <link rel="stylesheet" type="text/css" href="app/vid/styles/modal-buttons.css">
22 <link rel="stylesheet" type="text/css"
23       href="app/vid/scripts/modals/attach-test-env-manifest/attach-test-env-manifest.css"/>
24 <div class="modal-header">
25     <h3 id="modal-title">Attach Manifest</h3>
26     <span ng-click="vm.close()" class="pull-right modal-close" aria-hidden="true">&times;</span>
27 </div>
28 <form name="Attach Manifest" ng-submit="vm.submit()">
29     <div class="modal-body">
30         <label id="manifestName"  class="manifestName">Manifest Name</label>
31         <input onchange="angular.element(this).scope().selectAttachmentManifest(this)" type="file"
32                id="testEnvManifestFileInput" class="inputfile" accept=".json"/>
33         <label id="manifestFileName"  class="manifestFileName">{{vm.filename}}</label><label for="testEnvManifestFileInput" class="labelForImage" >
34             <span class="icon-browse"></span>
35         </label><label id="errorLabel" class="errorLabel">{{vm.error}}</label>
36
37     </div>
38     <div class="modal-footer">
39         <div class="pull-right">
40             <button type="submit" id="submit" name="submit" class="btn btn-primary"
41                    ng-disabled="vm.isSubmitDisabled()">Attach
42             </button>
43             <button type="button" id="cancel" name="cancel" class="btn btn-white" ng-click="vm.close()">Cancel</button>
44         </div>
45     </div>
46 </form>