049c8bc4a7fe09006440d1413700be20b6a257b8
[validation.git] / ui / src / main / webapp / app / BluvalUI / NewSubmission / NewSubmissionTemplate.html
1 <!--
2 Copyright (c) 2019 AT&T Intellectual Property. All rights reserved.
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8        http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15 -->
16
17 <div id="page-content" class="content" style="padding: 25px;">
18     <div>
19         <h1 class="heading-page">New Submission</h1>
20         <h2 class="heading-small">Submission form</h2>
21
22         <div>
23             <div class="form-row">
24                 <label for="textinputID-3a">Select Blueprint: </label> <select
25                     ng-model="selectedBlueprintName"
26                     ng-change="selectedBluePrintNameChange()"
27                     ng-options="n for n in blueprintNames">
28                 </select>
29             </div>
30         </div>
31         <br>
32
33         <div>
34             <div class="form-row">
35                 <label for="textinputID-3a">Select Blueprint
36                     Version: </label> <select
37                     ng-model="selectedBlueprintVersion"
38                     ng-change="selectedBluePrintVersionChange()"
39                     ng-options="y for y in blueprintVersions">
40                 </select>
41             </div>
42         </div>
43         <br>
44
45         <div>
46             <div class="form-row">
47                 <label for="textinputID-3a">Select Blueprint
48                     Layer: </label> <select ng-model="selectedBlueprintLayer"
49                     ng-change="selectedBluePrintLayerChange()"
50                     ng-options="l for l in blueprintLayers">
51                 </select>
52             </div>
53         </div>
54         <br>
55
56         <div>
57             <div class="form-row">
58                 <label for="textinputID-3a">Optional Test Cases: </label> <select ng-model="selectedOptional"
59                     ng-change="selectedOptionalChange()"
60                     ng-options="l for l in optionals">
61                 </select>
62             </div>
63         </div>
64         <br>
65
66
67         <div>
68             <div class="form-row">
69                 <label for="textinputID-3a">Select Timeslot: </label> <select
70                     ng-model="selectedDeclerativeTimeslot"
71                     ng-options="v for v in declerativeTimeslots">
72                 </select>
73             </div>
74         </div>
75         <br>
76
77         <div class="fn-ebz-container"
78             style="position: relative; top: 25px;">
79             <button href="javascript:void(0)" id="addbtn"
80                 style="bottom: -17px;" size="small"
81                 att-accessibility-click="13,32"
82                 class="btn btn-alt btn-small" ng-click="submit();">Submit</button>
83         </div>
84     </div>
85 </div>